-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.sample
36 lines (28 loc) · 1.33 KB
/
.env.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# FLASK
FLASK_ENV='development'
FLASK_DEBUG=1
FLASK_APP='grc'
# Set the log level of the application (from https://docs.python.org/3/library/logging.html#levels)
LOG_LEVEL='DEBUG'
# SECRET_KEY is used by Flask for creating tokens for password reset and review pages
SECRET_KEY=''
# VCAP_SERVICES is the way Cloud Foundry passed credentials into apps
VCAP_SERVICES='{"aws-s3-bucket":[{"credentials": {"aws_access_key_id": "ASK_SOMEONE_WHO_KNOWS","aws_region": "eu-west-2","aws_secret_access_key": "ASK_SOMEONE_WHO_KNOWS","bucket_name": "ASK_SOMEONE_WHO_KNOWS",},"instance_name": "grc-s3-dev",}]"postgres":[{"instance_name":"local","credentials":{"host":"grc_db","name":"grc","password":"password","port":5432,"username":"postgres"}}]}'
# Database
#SQLALCHEMY_DATABASE_URI="postgresql://postgres:password@grc_db:5432/grc"
DEFAULT_ADMIN_USER='[email protected]'
# NOTIFY
NOTIFY_API='ASK_SOMEONE_WHO_KNOWS'
NOTIFY_OVERRIDE_EMAIL='[email protected]'
# AWS DEV
#AWS_ACCESS_KEY_ID="ASK_SOMEONE_WHO_KNOWS"
#AWS_SECRET_ACCESS_KEY="ASK_SOMEONE_WHO_KNOWS"
#AWS_REGION="eu-west-2"
#AWS_S3_REGION_NAME="eu-west-2"
#AWS_S3_SIGNATURE_VERSION="s3v4"
#BUCKET_NAME="ASK_SOMEONE_WHO_KNOWS"
# GOVUK PAY DEV
GOVUK_PAY_API="https://publicapi.payments.service.gov.uk/"
GOVUK_PAY_API_KEY="ASK_SOMEONE_WHO_KNOWS"
# Maintenance Mode
MAINTENANCE_MODE='OFF'