Files
notifications-admin/sample.env

38 lines
916 B
Bash
Raw Normal View History

2022-11-08 09:44:52 -05:00
# STEPS TO SET UP
#
# 1. Pull down AWS creds from cloud.gov using `cf env`, then update AWS section
#
# 2. Uncomment either the Docker setup or the direct setup
#
# 3. Comment out the other setup
#
2022-08-01 12:32:42 -07:00
# ## REBUILD THE DEVCONTAINER WHEN YOU MODIFY .ENV ###
2022-06-13 14:42:50 -07:00
2022-11-08 09:44:52 -05:00
#############################################################
# AWS
AWS_REGION=us-west-2
AWS_ACCESS_KEY_ID="don't write secrets to the sample file"
AWS_SECRET_ACCESS_KEY="don't write secrets to the sample file"
#############################################################
# Application
2022-06-13 14:42:50 -07:00
NOTIFY_ENVIRONMENT=development
FLASK_APP=application.py
FLASK_ENV=development
WERKZEUG_DEBUG_PIN=off
NODE_VERSION=16.15.1
2022-11-08 09:44:52 -05:00
#############################################################
2022-06-13 14:42:50 -07:00
2022-11-08 09:44:52 -05:00
# Local Docker setup
# API_HOST_NAME=http://dev:6011
# REDIS_URL=redis://adminredis:6379/0
# Local direct setup
API_HOST_NAME=http://localhost:6011
REDIS_URL=redis://localhost:6379/0