-
Notifications
You must be signed in to change notification settings - Fork 187
/
app.json
44 lines (44 loc) · 1.53 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
40
41
42
43
44
{
"name": "lowcoder",
"description": "A Visual App builder with 120+ built-in components. Create software applications (internal and customer-facing!) and Meeting/Collaboration tools for your Company and your Customers with minimal coding experience.",
"repository": "https://github.com/lowcoder-org/lowcoder",
"logo": "https://lowcoder.cloud/images/webclip.png",
"keywords": [
"LowCode",
"Low code",
"develop tool",
"Fast Application Development",
"Rapid development",
"Collaboration tool",
"Video conferencing"
],
"stack": "container",
"formation": {
"web": {
"quantity": 1,
"size": "standard-2x"
}
},
"env": {
"LOWCODER_DB_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
},
"LOWCODER_DB_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
},
"LOWCODER_CORS_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
},
"LOWCODER_MONGODB_URL": {
"description": "Your Mongo Database URL.",
"required": false
},
"LOWCODER_REDIS_URL": {
"description": "Your Redis Database URL.",
"required": false
}
}
}