Update Environment Variables

Corban-Lee Jones 2024-08-27 18:33:31 +00:00
parent 1d8216636e
commit 62da744b3d

@ -71,8 +71,9 @@ https://docs.djangoproject.com/en/5.0/ref/settings/#databases
**Optional / Default `None`**
The database engine used by the application, view the []() for a list of supported database engines.
If `None`, the other database environment variables will be ignored, and an sqlite database will be used in the project root, named `db.sqlite3`.
The database engine used by the application, view the [list of supported engines](https://docs.djangoproject.com/en/5.0/ref/settings/#engine) to learn more.
> **Warning** Leaving this value as the default value (`None`) will cause other database related environment variables to be ignored, due to the default sqlite database being used instead.
Example value: `django.db.backends.postgresql`
@ -80,7 +81,9 @@ Example value: `django.db.backends.postgresql`
**Optional / No Default**
test
The name of your database
Example value: `pyrss`
#### `DB_USER`