-
Notifications
You must be signed in to change notification settings - Fork 75
/
config.sample.hjson
124 lines (106 loc) · 2.23 KB
/
config.sample.hjson
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# Copyright © 2018, Octave Online LLC
#
# This file is part of Octave Online Server.
#
# Octave Online Server is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
#
# Octave Online Server is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
# License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Octave Online Server. If not, see
# <https://www.gnu.org/licenses/>.
##########
# NOTICE #
##########
#
# For additional information about these settings, refer to
# config_defaults.json
#
# # # # # # # # # # # # #
# Common configurations #
# # # # # # # # # # # # #
redis: {
hostname: localhost
port: 6379
options: {
auth_pass: xxxxxxxxx
}
}
mongo: {
hostname: localhost
port: 27019
db: oo
}
email: {
provider: mailgun
mailgun: {
api_key: xxxxxxxxx
domain: localhost
}
postmark: {
serverToken: xxxx-xxxx-xxxx
templateAlias: xxxxxxxxx
}
}
recaptcha: {
siteKey: xxxxxxxxx
secretKey: xxxxxxxxx
}
gcp: {
artifacts_bucket: artifacts.PROJECT_ID.appspot.com
}
# # # # # # # # # # # # # # # #
# Back Server configurations #
# # # # # # # # # # # # # # # #
worker: {
logDir: /tmp/oo_logs
}
session: {
implementation: docker
}
git: {
hostname: localhost
}
# # # # # # # # # # # # # # # #
# Front Server configurations #
# # # # # # # # # # # # # # # #
auth: {
google: {
oauth_key: xxxxxxxxx.apps.googleusercontent.com
oauth_secret: xxxxxxxxx
}
easy: {
### Make up a long random string! ###
secret: xxxxxxxxx
}
utils_admin: {
users: {
### Make up a long random string! ###
admin: xxxxxxxxx
}
}
}
front: {
protocol: http
hostname: localhost
port: 8080
listen_port: 8080
# Use "client/app" for debugging
static_path: client/dist
cookie: {
### Make up a long random string! ###
secret: xxxxxxxxx
}
}
# # # # # # # # # # # # #
# Client configurations #
# # # # # # # # # # # # #
client: {
gtagid: xxxxxxxxx
}