2023-03-14 15:36:32 -04:00
|
|
|
# See README.md for local setup instructions
|
2022-10-20 14:05:54 -04:00
|
|
|
|
2022-07-14 13:36:05 -05:00
|
|
|
# ## REBUILD THE DEVCONTAINER WHEN YOU MODIFY .ENV ###
|
2022-06-29 08:47:36 -07:00
|
|
|
|
2022-10-20 14:05:54 -04:00
|
|
|
#############################################################
|
|
|
|
|
|
|
|
|
|
# AWS
|
2023-03-13 12:58:50 -04:00
|
|
|
AWS_US_TOLL_FREE_NUMBER=+18556438890
|
2022-10-20 14:05:54 -04:00
|
|
|
|
|
|
|
|
#############################################################
|
|
|
|
|
|
|
|
|
|
# Local Docker setup, all overwritten in cloud.gov
|
2023-03-13 12:58:50 -04:00
|
|
|
# ADMIN_BASE_URL=http://admin:6012
|
|
|
|
|
# API_HOST_NAME=http://dev:6011
|
|
|
|
|
# REDIS_URL=redis://redis:6380
|
|
|
|
|
# DATABASE_URL=postgresql://postgres:chummy@db:5432/notification_api
|
|
|
|
|
# SQLALCHEMY_DATABASE_TEST_URI=postgresql://postgres:chummy@db:5432/test_notification_api
|
2022-10-20 14:05:54 -04:00
|
|
|
|
2023-08-29 13:12:18 -07:00
|
|
|
|
|
|
|
|
# If you want to do local development with localstack copy this to your .env file and uncomment it
|
|
|
|
|
# LOCALSTACK_ENDPOINT_URL=http://localhost:4566
|
|
|
|
|
|
2022-10-20 14:05:54 -04:00
|
|
|
# Local direct setup, all overwritten in cloud.gov
|
2023-03-13 12:58:50 -04:00
|
|
|
ADMIN_BASE_URL=http://localhost:6012
|
|
|
|
|
API_HOST_NAME=http://localhost:6011
|
|
|
|
|
REDIS_URL=redis://localhost:6379
|
|
|
|
|
DATABASE_URL=postgresql://localhost:5432/notification_api
|
|
|
|
|
SQLALCHEMY_DATABASE_TEST_URI=postgresql://localhost:5432/test_notification_api
|
2022-10-20 14:05:54 -04:00
|
|
|
|
|
|
|
|
#############################################################
|
|
|
|
|
|
2022-06-13 14:50:22 -07:00
|
|
|
# Debug
|
|
|
|
|
DEBUG=True
|
|
|
|
|
ANTIVIRUS_ENABLED=0
|
2022-10-31 13:25:59 -04:00
|
|
|
REDIS_ENABLED=1
|
2022-06-13 14:50:22 -07:00
|
|
|
NOTIFY_ENVIRONMENT=development
|
|
|
|
|
SES_STUB_URL=None
|
|
|
|
|
NOTIFY_APP_NAME=api
|
|
|
|
|
|
2022-10-20 14:05:54 -04:00
|
|
|
#############################################################
|
2022-06-13 14:50:22 -07:00
|
|
|
|
|
|
|
|
# Flask
|
|
|
|
|
FLASK_APP=application.py
|
2023-02-09 13:44:41 -05:00
|
|
|
FLASK_DEBUG=true
|
2022-06-13 14:50:22 -07:00
|
|
|
WERKZEUG_DEBUG_PIN=off
|
2023-01-17 14:08:17 -05:00
|
|
|
|
|
|
|
|
#############################################################
|
|
|
|
|
|
|
|
|
|
# New Relic
|
|
|
|
|
NEW_RELIC_CONFIG_FILE=newrelic.ini
|
2023-01-18 10:49:39 -05:00
|
|
|
NEW_RELIC_LICENSE_KEY="don't write secrets to the sample file"
|