forked from hackoregon/elections-2018-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
37 lines (25 loc) · 1 KB
/
.env
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
PROJECT_NAME=local_elections
# the database superuser name - this is the default
POSTGRES_USER=postgres
# the database name the API will connect to - "dbname" in most PostgreSQL command-line tools
POSTGRES_NAME=local-elections-finance
# the database owner - automatic restore needs this (most likely only used in dev)
DATABASE_OWNER=local_elections
# *service* name (*not* image name) of the database in the Docker network
POSTGRES_HOST=db_development
# port the database is listening on in the Docker network
POSTGRES_PORT=5432
# password for the PostgreSQL database superuser in the database container
POSTGRES_PASSWORD=sit-down-c0mic
# the password for the teams
TEAM_PASSWORD=d0wn!0ff!a!duck
# Django secret key in the API container
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