first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 22:09:32 +03:00
commit 71eff2d979
78 changed files with 10173 additions and 0 deletions

9
docker-entrypoint.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
set -e
# Uploads klasörünü oluştur ve izinleri ayarla (volume mount için)
mkdir -p /app/public/uploads
chmod -R 775 /app/public/uploads
# Uygulamayı başlat
exec node server.js