-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.env
59 lines (49 loc) · 1.48 KB
/
sample.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
# db
DB_NAME=bedes
DB_PORT=5432
# The default is when running the BEDES Manager with Docker Compose.
# You will have to change this value, most likely to 127.0.0.1, if you run it locally with Node.js.
DB_HOST=db
# db name/pass
DB_USER=bedes_admin
DB_PASSWORD=
## Postgres docker env vars
POSTGRES_USER=postgres
POSTGRES_PASSWORD=
PGDATA=/var/lib/postgresql/data/pgdata
POSTGRES_VOLUME_NAME=bedes-db
# credentials for the BedesManager Administrator
BEDES_ADMIN_EMAIL=bedes-manager@mail.eta.lbl.gov
BEDES_ADMIN_PASSWORD=
# credentials for the user-1 test account
USER_1_EMAIL=user1@test.com
USER_1_PASSWORD=
USER_1_ORG="User 1 Organization"
USER_1_FIRST="user1"
USER_1_LAST="tester"
# credentials for the user-2 test account
USER_2_EMAIL=user2@test.com
USER_2_PASSWORD=
USER_2_ORG="User 2 Organization"
USER_2_FIRST="User2"
USER_2_LAST="Smith"
# name of the app scripts image
# where scripts can be run against the running containers
SCRIPT_IMAGE=bedes_script_img
SCRIPT_CONTAINER=bedes_script_container
# backend node.js container name
BACKEND_CONTAINER=bedes_compose_backend_container
# docker-compose nginx container name
WEB_CONTAINER=bedes_compose_web_container
# docker-compose database container name
DB_CONTAINER_NAME=bedes_compose_db_container
# docker-compose network name
DOCKER_NET_NAME=bedes-network
DB_IMAGE=postgres:12.1-alpine
ANGULAR_BUILD_IMAGE=bedes_angular_build_img
ANGULAR_BUILD_CONTAINER=bedes_angular_build_container
# smtp settings
SMTP_USER_NAME=
SMTP_PASSWORD=
SMTP_HOST=
SMTP_PORT=