-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv
130 lines (76 loc) · 2.16 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# Want to be able to switch from dev to production
#
# =============================
# Main Project Env - Dockerfile
# =============================
APP_DIR=/app
CIRCLE_TEST_REPORTS=/app/backend/circle-junit
BACKEND_DIR=/app/backend
# =============================
# Django - Environment Vars
#
# REMEMBER TO CHANGE SUPERUSER
# NAME AND PASSWORD WITH FIRST
# USE
#
# =============================
SUPERUSER_NAME=administrator
SUPERUSER_PASSWORD=password12
SUPERUSER_FIRSTNAME=James
SUPERUSER_LASTNAME=Tarball
DB_NAME=postgres
DB_USER=postgres
DB_PASS=postgres
DB_HOST=postgres
DB_PORT=5432
#environment:
# - ENV_TYPE=dev
# - REQUIREMENTS=docker-builds/docker-backend/requirements
# - DB_NAME=youtubeadl
# - DB_USER
# - DB_PASSWORD
# - DB_HOST
# - DB_PORT
# - DB_=youtubeadl
# - POSTGRESQL_PASSWORD=password
# - DEBUG=1
# - DJANGO_SETTINGS_MODULE=abas.settings.local
# - DATABASE_URL=postgres://postgres@db/postgres
# expose:
# - "8000"
# links:
# - postgres:postgres
#####
# In this file you can specify the environment variables. The containers will
# be able to access these variables and use them if necessary. Remember when
# you are using this project this files needs to be out of version control,
# because it can hold sensitive information.
#####
#####
# Postgresql
#####
# Name and port of the host where the postgres container is running. This will
# be the name that is specified in docker-compose.yml
POSTGRES_HOST=db
POSTGRES_PORT=5432
# Specify the name of the database, name and the password of the database user
POSTGRES_NAME=database
POSTGRES_USER=admin
POSTGRES_PASSWORD=mysecretpassword
#####
# Django
#####
# The name of the Django project, this is used in the files django-uwsgi.ini
# and setup.sh
DJANGO_PROJECT_NAME=starter
#####
# Nginx
#####
# Server name used in nginx.j2
NGINX_SERVER_NAME=localhost
# Here you can specify the location of your SSL/TLS certificate and key.
# This will be specified in the nginx.j2 When empty it uses the default
# self-signed certificate provided by this project
NGINX_CRT_NAME
NGINX_KEY_NAME