Skip to content

Commit

Permalink
docs(config): describe Django superuser env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
thekaveman committed Nov 8, 2023
1 parent 284f6aa commit b9d2ecb
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions docs/configuration/environment-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,42 @@ By default the application sends logs to `stdout`.

Django's primary secret, keep this safe!

### `DJANGO_SUPERUSER_EMAIL`

!!! warning "Deployment configuration"

You may change this setting when deploying the app to a non-localhost domain

!!! danger "Required configuration"

This setting is required when `DJANGO_ADMIN` is `true`

The email address of the Django Admin superuser created during initialization.

### `DJANGO_SUPERUSER_PASSWORD`

!!! warning "Deployment configuration"

You may change this setting when deploying the app to a non-localhost domain

!!! danger "Required configuration"

This setting is required when `DJANGO_ADMIN` is `true`

The password of the Django Admin superuser created during initialization.

### `DJANGO_SUPERUSER_USERNAME`

!!! warning "Deployment configuration"

You may change this setting when deploying the app to a non-localhost domain

!!! danger "Required configuration"

This setting is required when `DJANGO_ADMIN` is `true`

The username of the Django Admin superuser created during initialization.

### `DJANGO_TRUSTED_ORIGINS`

!!! warning "Deployment configuration"
Expand Down

0 comments on commit b9d2ecb

Please sign in to comment.