feat: добавлена современная страница деталей услуги с портфолио и отзывами

This commit is contained in:
2025-11-24 09:05:48 +09:00
parent faa02b79c0
commit ee3a1bf846
20 changed files with 1260 additions and 53 deletions

17
docker-entrypoint.sh Executable file
View File

@@ -0,0 +1,17 @@
#!/bin/bash
set -e
echo "Waiting for PostgreSQL..."
while ! nc -z postgres_db 5432; do
sleep 1
done
echo "PostgreSQL is ready!"
echo "Running migrations..."
python smartsoltech/manage.py migrate --noinput
echo "Collecting static files..."
python smartsoltech/manage.py collectstatic --noinput || true
echo "Starting Django server..."
exec python smartsoltech/manage.py runserver 0.0.0.0:8000