You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| PROJECT_URL | The origin you are serving the whole application from. For example: https://example.com| Required |
50
+
| DJANGO_ROOT_PASSWORD | The backend creates a root user by default to access the admin interface to create more users. | Required |
51
+
| DJANGO_SECRET_KEY | The [secret key Django uses for signing things](https://docs.djangoproject.com/en/5.0/topics/signing/)| Required |
52
+
| DJANGO_DEBUG | Whether to run Django in debug mode or production | False |
53
+
| DJANGO_ALLOWED_HOSTS | Essentially a firewall of all sources Django will allow. For most cases all ('\*') is what you'll want. | Required |
50
54
| DJANGO_DATABASE_URL | This uses [dj-database-url](https://pypi.org/project/dj-database-url/) to tell Django how to connect to the database. In theory it could really be any database Django supports, but it's only tested with MariaDB and that's what the docker entrypoint tries to connect to when starting. | Required |
0 commit comments