-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
33 lines (26 loc) · 1.08 KB
/
.env.example
File metadata and controls
33 lines (26 loc) · 1.08 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
# In development avoid writing out bytecode to __pycache__ directories.
export PYTHONDONTWRITEBYTECODE=true
# Enable BuildKit by default:
# https://docs.docker.com/develop/develop-images/build_enhancements
export DOCKER_BUILDKIT=1
export COMPOSE_PROJECT_NAME=AbrNOC_BSP
############################## django env ##############################
export SECRET_KEY=insecure_key_for_dev
export DJANGO_PORT=8000
# for development
export DEBUG=true
export ALLOWED_HOSTS="*"
# for production
# export DEBUG=false
# export ALLOWED_HOSTS=".localhost,127.0.0.1,[::1]"
############################## django env ##############################
############################ postgresql env ############################
export POSTGRES_USER=db_admin
export POSTGRES_PASSWORD=svN35q2*UJ7WPN9!
export POSTGRES_DB=BSP
export POSTGRES_PORT=5432
############################ postgresql env ############################
############################# react.js env #############################
export REACTJS_PORT=3001
export NODE_ENV=development
############################# react.js env #############################