-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.sample
More file actions
56 lines (38 loc) · 1.67 KB
/
env.sample
File metadata and controls
56 lines (38 loc) · 1.67 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
PROJECT_NAME=dead_songs
DEBUG=True
# the database superuser name - this is the default
DEVELOPMENT_POSTGRES_USER=postgres
# the database name the API will connect to - "dbname" in most PostgreSQL command-line tools
DEVELOPMENT_POSTGRES_NAME=dead_songs
# the database owner - automatic restore needs this
DEVELOPMENT_DATABASE_OWNER=sampleuser
# *service* name (*not* image name) of the database in the Docker network
DEVELOPMENT_POSTGRES_HOST=db_development
# port the database is listening on in the Docker network
DEVELOPMENT_POSTGRES_PORT=5432
# password for the PostgreSQL database superuser in the database container
DEVELOPMENT_POSTGRES_PASSWORD=sit-down-c0mic
# the password for the teams
DEVELOPMENT_TEAM_PASSWORD=d0wn!0ff!a!duck
# Django secret key in the API container
DEVELOPMENT_DJANGO_SECRET_KEY=r0ck.ar0und.the.c10ck
# the database superuser name - this is the default
PRODUCTION_POSTGRES_USER=postgres
# the database name the API will connect to - "dbname" in most PostgreSQL command-line tools
PRODUCTION_POSTGRES_NAME=dead_songs
# *service* name (*not* image name) of the database in the Docker network
PRODUCTION_POSTGRES_HOST=aws_ip
# port the database is listening on in the Docker network
PRODUCTION_POSTGRES_PORT=5432
# password for the PostgreSQL database superuser in the database container
PRODUCTION_POSTGRES_PASSWORD=sit-down-c0mic
# Django secret key in the API container
PRODUCTION_DJANGO_SECRET_KEY=r0ck.ar0und.the.c10ck
# Docker container registry host
DOCKER_REPO=
# subfolder/namespace in registry
DOCKER_REPO_NAMEPSACE=
# Docker image name to deploy from travis -> AWS ECR
DOCKER_IMAGE=api_production
# AWS region for our ECR
AWS_DEFAULT_REGION=us-west-2