-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsite-defaults.edn
96 lines (73 loc) · 1.8 KB
/
site-defaults.edn
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
;; The host that dinsro is served at
:baseUrl "dinsro.localtest.me"
;; repo for images
:repo "duck1123"
;; tag for dinsro image
:version "latest"
;; If Rancher is being used, all namespaces will be applied to this project
:projectId "p-vhkqf"
:devcards
{:enabled false
:embedded false
:inheritHost true
:host "devcards.dinsro.localtest.me"}
:devtools
{:enabled false
:embedded false
:inheritHost true
:host "devtools.dinsro.localtest.me"}
:docs
{:enabled false
:inheritHost true
:host "docs.dinsro.localtest.me"}
:logLevel ":info"
:nodes
{"alice"
{:bitcoin true
:lnd true
:fileserver true
:rtl true
:specter false
:lnbits false
:external-port 9736}
"bob"
{:bitcoin true
:lnd true
:fileserver true
:rtl false
:specter false
:lnbits false
:external-port 9737}}
:notebooks
{
;; Should the notebooks be started?
:enabled false
:embedded false
:inheritHost true
:host "notebooks.dinsro.localtest.me"}
:workspaces
{:enabled false
:embedded false
:inheritHost true
:host "workspaces.dinsro.localtest.me"}
:useDocs true
;; If true, devtools will be run on the host, otherwise the dev image will launch
;; a devtools watcher on startup and will pre-compile the js resources
:localDevtools true
:useCards true
:seedDatabase false
:useGuardrails true
;; Enable linting watchers
:useLinting true
;; Should a nrepl connection be started?
:useNrepl false
;; If true, a database will be launched and set as the db backend
:usePersistence false
;; If true, production image will be deployed
:useProduction false
:useSqlpad false
:tls { :enabled true }
;; Should testing resources be run?
:useTests false
}