-
Notifications
You must be signed in to change notification settings - Fork 12
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
1 parent
4e83bcd
commit f851b15
Showing
1 changed file
with
44 additions
and
12 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 |
---|---|---|
@@ -1,21 +1,53 @@ | ||
SECRET_KEY='<-- YOUR SECRET KEY HERE -->' | ||
|
||
DB_NAME='postgres' # Insert your database name here | ||
DB_USER='postgres' # Insert your PostgreSQL username here | ||
DB_PASSWORD='password' #Insert your PostgreSQL password here. | ||
DB_HOST='db' | ||
DB_PORT='5432' | ||
DB_NAME='citus' # Insert your database name here | ||
DB_USER='citus' # Insert your PostgreSQL username here | ||
DB_PASSWORD='' #Insert your PostgreSQL password here. | ||
DB_HOST='' | ||
|
||
SMTP_USERNAME = "" | ||
SMTP_PASSWORD = "" | ||
API_URL='' | ||
|
||
API_URL='http://localhost:8000' | ||
|
||
LOGGING='false' | ||
LOG_LEVEL='INFO' | ||
|
||
ENV='dev' | ||
DB_PORT='5432' | ||
|
||
FRONTEND_URL='' | ||
ENV='dev' | ||
DEFAULT_FROM_EMAIL="" | ||
EMAIL_HOST="" | ||
SMTP_USERNAME="" | ||
SMTP_PASSWORD="" | ||
|
||
INDIC_TRANS_V2_KEY='' | ||
INDIC_TRANS_V2_URL='' | ||
|
||
LOGGING='true' | ||
LOG_LEVEL='WARNING' | ||
|
||
GOOGLE_APPLICATION_CREDENTIALS = '' | ||
|
||
FRONTEND_URL_FOR_RESET_PASSWORD = 'https://dev.shoonya.ai4bharat.org' | ||
SECRET_KEY_RESET_PASSWORD = '' | ||
|
||
ASR_DHRUVA_URL = '' | ||
ASR_DHRUVA_AUTHORIZATION = '' | ||
|
||
INDEX_NAME= 'django_logs_dev' | ||
ELASTICSEARCH_URL='' | ||
|
||
AZURE_CONNECTION_STRING = '' | ||
|
||
STORAGE_ACCOUNT_CONNECTION_STRING=' | ||
|
||
CONTAINER_NAME_FOR_DOWNLOAD_ALL_PROJECTS='' | ||
|
||
LOGS_CONTAINER_NAME='logs' | ||
|
||
|
||
FLOWER_ADDRESS="localhost" | ||
FLOWER_PORT="5555" | ||
FLOWER_USERNAME="shoonya" | ||
FLOWER_PASSWORD="flower123" | ||
FRONTEND_URL='' | ||
CELERY_BROKER_URL="redis://redis:6379" | ||
REDIS_HOST="127.0.0.1" | ||
REDIS_PORT="6379" |