fix: separate logo and hero icon

This commit is contained in:
mohamad
2026-08-03 16:29:25 +03:30
parent 04b6e9049e
commit 4fc4282f0f
45 changed files with 900 additions and 495 deletions
+9 -3
View File
@@ -6,8 +6,8 @@ until python -c "
import os, psycopg2, sys
try:
psycopg2.connect(
dbname=os.environ.get('POSTGRES_DB', 'tecvico'),
user=os.environ.get('POSTGRES_USER', 'tecvico_user'),
dbname=os.environ.get('POSTGRES_DB', 'com2care'),
user=os.environ.get('POSTGRES_USER', 'com2care_user'),
password=os.environ.get('POSTGRES_PASSWORD', ''),
host=os.environ.get('POSTGRES_HOST', 'db'),
port=os.environ.get('POSTGRES_PORT', '5432'),
@@ -28,7 +28,13 @@ python manage.py collectstatic --noinput
echo "Running database migrations..."
python manage.py migrate --noinput
echo "Creating superuser if not exists..."
echo "Normalizing the public brand..."
python manage.py normalize_brand
echo "Adding demonstration content when the database is empty..."
python manage.py seed_content --if-empty
echo "Ensuring the first admin account exists..."
python manage.py ensure_superuser
echo "Starting application..."