-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,20 @@ ALLOW_ORIGINS=* | |
DATABASE_URL=postgres+asyncpg://user:password@host/db_name | ||
TRUSTED_HOST=localhost | ||
SECRET_KEY=PRODUCTION-SECRET-KEY | ||
|
||
# Email settings | ||
[email protected] | ||
EMAIL_HOST_USER=host-user | ||
EMAIL_HOST=email-host | ||
EMAIL_API_KEY=secret-api-key | ||
|
||
##### | ||
# Feature Flags | ||
# All Feature Flags are optional and false by default. | ||
##### | ||
# Determines if user creating enabled | ||
ACTIVATE_USERS=true | ||
# Enable HTTPS redirect behind the proxy. | ||
# Keep in mind proxy must pass x-forwarded-proto, x-forwarded-port and host in headers. | ||
# TRUSTED_HOST must be valid. | ||
ENABLE_HTTPS_REDIRECT=true |