-
Notifications
You must be signed in to change notification settings - Fork 359
/
app.json
39 lines (39 loc) · 1.26 KB
/
app.json
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
{
"name": "Openblocks",
"description": "Openblocks is a developer-friendly open-source low code platform to build internal apps within minutes.",
"repository": "https://github.com/openblocks-dev/openblocks",
"logo": "https://cdn-files.openblocks.dev/logo.png",
"keywords": [
"low code",
"develop tool"
],
"stack": "container",
"formation": {
"web": {
"quantity": 1,
"size": "standard-2x"
}
},
"env": {
"ENCRYPTION_PASSWORD": {
"description": "The encryption password used to encrypt all sensitive credentials in the database. You can use any random string (eg abcd).",
"required": false
},
"ENCRYPTION_SALT": {
"description": "The encryption salt used to encrypt all sensitive credentials in the database. You can use any random string (eg abcd).",
"required": false
},
"CORS_ALLOWED_DOMAINS": {
"description": "The domains supported for CORS requests. All domains are allowed by default. If there are multiple domains, please separate them with commas.",
"required": false
},
"MONGODB_URI": {
"description": "Your Mongo Database URI.",
"required": false
},
"REDIS_URL": {
"description": "Your Redis Database URL.",
"required": false
}
}
}