fix: separate logo and hero icon
This commit is contained in:
+9
-3
@@ -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..."
|
||||
|
||||
Reference in New Issue
Block a user