Fix backticks usage in README

This commit is contained in:
Christopher Charbonneau Wells 2021-07-06 20:32:40 -07:00 committed by GitHub
parent c31b2b5519
commit 8e814f1674
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -285,7 +285,7 @@ take precedence over the contents of an `.env` file.**
- [`NAP_START_MIN`](#nap_start_min) - [`NAP_START_MIN`](#nap_start_min)
- [`DB_ENGINE`](#db_engine) - [`DB_ENGINE`](#db_engine)
- [`DB_HOST`](#db_host) - [`DB_HOST`](#db_host)
- ['DB_NAME'](#db_name) - [`DB_NAME`](#db_name)
- [`DB_PASSWORD`](#db_password) - [`DB_PASSWORD`](#db_password)
- [`DB_PORT`](#db_port) - [`DB_PORT`](#db_port)
- [`DB_USER`](#db_user) - [`DB_USER`](#db_user)
@ -360,7 +360,7 @@ entry is consider a nap. Expects the 24-hour format %H:%M.
The minimum *start* time (in the instance's time zone) after which a sleep The minimum *start* time (in the instance's time zone) after which a sleep
entry is considered a nap. Expects the 24-hour format %H:%M. entry is considered a nap. Expects the 24-hour format %H:%M.
### 'DB_ENGINE' ### `DB_ENGINE`
*Default: django.db.backends.postgresql* *Default: django.db.backends.postgresql*
@ -368,31 +368,31 @@ The database engine utilized for the deployment.
See also [Django's documentation on the ENGINE setting](https://docs.djangoproject.com/en/3.0/ref/settings/#engine) . See also [Django's documentation on the ENGINE setting](https://docs.djangoproject.com/en/3.0/ref/settings/#engine) .
### 'DB_HOST' ### `DB_HOST`
*Default: db* *Default: db*
The name of the database host for the deployment. The name of the database host for the deployment.
### 'DB_NAME' ### `DB_NAME`
*Default: postgres* *Default: postgres*
The name of the database table utilized for the deployment. The name of the database table utilized for the deployment.
### 'DB_PASSWORD' ### `DB_PASSWORD`
*No Default* *No Default*
The password for the database user for the deployment. In the default example, this is the root PostgreSQL password. The password for the database user for the deployment. In the default example, this is the root PostgreSQL password.
### 'DB_PORT' ### `DB_PORT`
*Default: 5432* *Default: 5432*
The listening port for the database. The default port is 5432 for PostgreSQL. The listening port for the database. The default port is 5432 for PostgreSQL.
### 'DB_USER' ### `DB_USER`
*Default: postgres* *Default: postgres*