forked from azimuttapp/azimutt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
59 lines (59 loc) · 1.62 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "Azimutt",
"description": "Next-Gen ERD: Design, Explore, Document and Analyze your database.",
"repository": "https://github.com/azimuttapp/azimutt",
"logo": "https://azimutt.app/images/logo_dark.svg",
"keywords": [
"erd",
"entity-relationship diagram",
"database tool",
"database schema",
"diagram"
],
"stack": "container",
"addons": [
{ "plan": "heroku-postgresql", "as": "DATABASE" },
{ "plan": "ah-s3-object-storage-stackhero", "as": "S3" },
{ "plan": "mailgun" }
],
"env": {
"PHX_SERVER": "true",
"PORT": {
"description": "The port on which the server runs",
"value": "4000"
},
"SECRET_KEY_BASE": {
"description": "Secret for encryption of cookies",
"generator": "secret"
},
"FILE_STORAGE_ADAPTER": "s3",
"DATABASE_ENABLE_SSL": {
"description": "Enable SSL for database connections",
"value": "true"
},
"AUTH_PASSWORD": {
"description": "Enable password-based authentication",
"value": "true"
},
"SKIP_ONBOARDING_FUNNEL": {
"description": "Skip the onboarding funnel for quicker testing",
"value": "true"
},
"SKIP_EMAIL_CONFIRMATION": {
"description": "Skip email confirmation for quicker access",
"value": "true"
},
"PUBLIC_SITE": {
"description": "Flag to control if the site should be public",
"value": "false"
},
"EMAIL_ADAPTER": {
"description": "Email service adapter",
"value": "mailgun"
},
"MAILGUN_BASE_URL": {
"description": "Mailgun base url",
"value": "https://api.eu.mailgun.net/v3"
}
}
}