forked from openpredictionmarkets/socialpredict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
36 lines (29 loc) · 1 KB
/
.env.example
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
# Set the environment to either 'development' or 'production'
APP_ENV=production
ADMIN_PASSWORD='password'
BACKEND_IMAGE_NAME=socialpredict-backend
BACKEND_CONTAINER_NAME=socialpredict-backend-container
BACKEND_PORT=8080 # Internal
BACKEND_HOSTPORT=8086 # External
POSTGRES_CONTAINER_NAME=socialpredict-postgres-container
DB_HOST=db
DB_PORT=5433
POSTGRES_PORT=5432
POSTGRES_USER='user'
POSTGRES_PASSWORD='password'
POSTGRES_DATABASE='socialpredict_db'
FRONTEND_IMAGE_NAME=socialpredict-frontend
FRONTEND_CONTAINER_NAME=socialpredict-frontend-container
REACT_PORT=5173 # Internal
REACT_HOSTPORT=5173 # External
NGINX_IMAGE_NAME=socialpredict-nginx
NGINX_CONTAINER_NAME=socialpredict-nginx-container
NGINX_PORT=80 # Internal
NGINX_HOSTPORT=8089 # External
CERTBOT_CONTAINER_NAME=socialpredict-certbot-container
# Domain name you wish to use
DOMAIN='domain.com'
# Valid email address to use with Let's Encrypt Service
EMAIL='[email protected]'
# Set to 1 if you wish to use the staging option for Let's Encrypt
STAGING=0