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
The [Configuration in Detail](#configuration-in-detail) section contains
83
+
detailed information about these settings.
84
+
82
85
#### Notes regarding `DATABASE_URL`
83
86
84
87
- If the database is hosted locally i.e. on the same machine as the webserver, then use `localhost` for the host. Windows and macOS users may need to use the [Docker host IP](../hosts-file/#windows) instead.
@@ -143,3 +146,36 @@ Unless you are editing the Dockerfile or docker-compose.yml, you shouldn't need
143
146
Django provides an interface for administration with which you can view and edit the models among other things.
144
147
145
148
It can be found at [http://admin.pythondiscord.local:8000](http://admin.pythondiscord.local:8000). The default credentials are `admin` for the username and `admin` for the password.
149
+
150
+
---
151
+
152
+
# Configuration in detail
153
+
154
+
The website is configured through the following environment variables:
155
+
156
+
## Essential
157
+
-**`DATABASE_URL`**: A string specifying the PostgreSQL database to connect to,
158
+
in the form `postgresql://user:password@host/database`, such as
0 commit comments