This commit is contained in:
2025-01-14 11:51:45 +01:00
parent 7a64cfdf66
commit efd30e9a28
13 changed files with 69 additions and 115 deletions

View File

@@ -1,9 +1,9 @@
GUNICORN_CMD_ARGS=--bind=127.0.0.1:3000 --workers=3 --timeout=300 --error-logfile=/var/log/gunicorn-error.log
GUNICORN_CMD_ARGS=--bind=127.0.0.1:3001 --workers=3 --timeout=300 --error-logfile=/var/log/gunicorn-error.log
DJANGO_SUPERUSER_PASSWORD=admin
SECRET_KEY=uv88xpv8kb2r6j7rubtnhkps
DATABASE_NAME=updates_dashboard
DATABASE_USER=updates_dashboard
DATABASE_PASSWORD=miengetBatheajOf
DATABASE_NAME=infra_dashboard
DATABASE_USER=infra_dashboard
DATABASE_PASSWORD=sebisdown
DATABASE_HOST=mysql
DATABASE_PORT=3306
DJANGO_ALLOWED_HOSTS=localhost 127.0.0.1

View File

@@ -110,13 +110,10 @@ DEBUG_TOOLBAR = True
# Internationalization
# https://docs.djangoproject.com/en/1.10/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'