-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv.tpl
More file actions
47 lines (37 loc) · 1.1 KB
/
env.tpl
File metadata and controls
47 lines (37 loc) · 1.1 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
### Postgres configuration ###
## Postgres image to run
# Used in docker-compose.yaml
PGIMAGE=healthsamurai/aidboxdb:14.5
## DB connection params
# Used by Postgres
# Used in 'system/db-config
PGHOSTPORT=5437
PGUSER=postgres
PGPASSWORD=postgres
PGDATABASE=aidbox
### Aidbox configuration ###
## Aidbox image to run
# Used in docker-compose.yaml
AIDBOX_IMAGE=healthsamurai/aidboxone:edge
# Aidbox configuraiton project path and entrypoint
# Used by Aidbox on startup time
# Used in docker-compose.yaml
BOX_PROJECT_GIT_TARGET__PATH=/project
AIDBOX_ZEN_ENTRYPOINT=system/box
## Aidbox license key
# Used in 'system/zen-config
AIDBOX_LICENSE=<your-license-key>
## Web server params
# Used in 'system/web-config
AIDBOX_BASE_URL=http://localhost:8888
AIDBOX_PORT=8888
# Super admin Client to create on start up
# Used in 'system/admin-seed.
# Remove from the seed if super admin is not needed.
AIDBOX_CLIENT_ID=client
AIDBOX_CLIENT_SECRET=secret
# Super admin User to create on start up
# Used in 'system/admin-seed
# Remove from the seed if super admin is not needed.
AIDBOX_ADMIN_ID=admin
AIDBOX_ADMIN_PASSWORD=secret