mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
38 lines
916 B
Bash
38 lines
916 B
Bash
# 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
|
|
#
|
|
|
|
# ## REBUILD THE DEVCONTAINER WHEN YOU MODIFY .ENV ###
|
|
|
|
#############################################################
|
|
|
|
# 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
|
|
NOTIFY_ENVIRONMENT=development
|
|
FLASK_APP=application.py
|
|
FLASK_ENV=development
|
|
WERKZEUG_DEBUG_PIN=off
|
|
|
|
NODE_VERSION=16.15.1
|
|
|
|
#############################################################
|
|
|
|
# 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
|