Skip to content

Commit b9d2ecb

Browse files
committed
docs(config): describe Django superuser env vars
1 parent 284f6aa commit b9d2ecb

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

docs/configuration/environment-variables.md

+36
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,42 @@ By default the application sends logs to `stdout`.
120120

121121
Django's primary secret, keep this safe!
122122

123+
### `DJANGO_SUPERUSER_EMAIL`
124+
125+
!!! warning "Deployment configuration"
126+
127+
You may change this setting when deploying the app to a non-localhost domain
128+
129+
!!! danger "Required configuration"
130+
131+
This setting is required when `DJANGO_ADMIN` is `true`
132+
133+
The email address of the Django Admin superuser created during initialization.
134+
135+
### `DJANGO_SUPERUSER_PASSWORD`
136+
137+
!!! warning "Deployment configuration"
138+
139+
You may change this setting when deploying the app to a non-localhost domain
140+
141+
!!! danger "Required configuration"
142+
143+
This setting is required when `DJANGO_ADMIN` is `true`
144+
145+
The password of the Django Admin superuser created during initialization.
146+
147+
### `DJANGO_SUPERUSER_USERNAME`
148+
149+
!!! warning "Deployment configuration"
150+
151+
You may change this setting when deploying the app to a non-localhost domain
152+
153+
!!! danger "Required configuration"
154+
155+
This setting is required when `DJANGO_ADMIN` is `true`
156+
157+
The username of the Django Admin superuser created during initialization.
158+
123159
### `DJANGO_TRUSTED_ORIGINS`
124160

125161
!!! warning "Deployment configuration"

0 commit comments

Comments
 (0)