-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab-config.json.template
More file actions
77 lines (77 loc) · 2.17 KB
/
lab-config.json.template
File metadata and controls
77 lines (77 loc) · 2.17 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
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
{
"lab": {
"name": "Atlas Lab",
"localUrl": "${LAB_LOCAL_URL}",
"publicUrl": "${LAB_URL}"
},
"features": {
"aiLlmEnabled": ${ATLAS_AI_LLM_ENABLED},
"workbenchEnabled": ${ATLAS_WORKBENCH_ENABLED}
},
"assets": {
"certificateUrl": "/assets/lab.crt"
},
"content": {
"networkMapPath": "/content/network-map.md"
},
"services": {
"gitLab": {
"url": "${GITLAB_URL}",
"externalUrl": "${GITLAB_EXTERNAL_URL}",
"rootUsername": "${GITLAB_ROOT_USERNAME}",
"rootPassword": "${GITLAB_ROOT_PASSWORD}",
"rootEmail": "${GITLAB_ROOT_EMAIL}"
},
"bookStack": {
"url": "${BOOKSTACK_URL}",
"rootName": "${BOOKSTACK_ROOT_NAME}",
"rootEmail": "${BOOKSTACK_ROOT_EMAIL}",
"rootPassword": "${BOOKSTACK_ROOT_PASSWORD}"
},
"openWebUi": {
"url": "${OPENWEBUI_URL}",
"rootName": "${OPENWEBUI_ROOT_NAME}",
"rootEmail": "${OPENWEBUI_ROOT_EMAIL}",
"rootPassword": "${OPENWEBUI_ROOT_PASSWORD}"
},
"n8n": {
"url": "${N8N_URL}",
"ownerName": "${N8N_ROOT_FIRST_NAME} ${N8N_ROOT_LAST_NAME}",
"ownerEmail": "${N8N_ROOT_EMAIL}",
"ownerPassword": "${N8N_ROOT_PASSWORD}"
},
"ollama": {
"url": "${OLLAMA_URL}",
"gatewayUser": "${OLLAMA_GATEWAY_USER}",
"gatewayPassword": "${OLLAMA_GATEWAY_PASSWORD}"
},
"penpot": {
"url": "${PENPOT_URL}",
"rootName": "${PENPOT_ROOT_NAME}",
"rootEmail": "${PENPOT_ROOT_EMAIL}",
"rootPassword": "${PENPOT_ROOT_PASSWORD}"
}
},
"workbenches": {
"node": {
"url": "${NODE_DEV_URL}",
"password": "${NODE_DEV_PASSWORD}",
"briefingPath": "/content/node-dev.md"
},
"python": {
"url": "${PYTHON_DEV_URL}",
"password": "${PYTHON_DEV_PASSWORD}",
"briefingPath": "/content/python-dev.md"
},
"postgres": {
"host": "localhost",
"port": "${POSTGRES_DEV_HOST_PORT}",
"internalHost": "postgres-dev",
"internalPort": "5432",
"database": "${POSTGRES_DEV_DATABASE}",
"superuser": "${POSTGRES_DEV_SUPERUSER}",
"password": "${POSTGRES_DEV_PASSWORD}",
"briefingPath": "/content/postgres-dev.md"
}
}
}