1
0

Added app.json, updated logo

(cherry picked from commit f4e812f954a08f0dfa05b25bf8b969d3f33d15d0)
This commit is contained in:
Oleg Lavrovsky 2020-05-05 18:33:22 +02:00 committed by Michael Schramm
parent d2dc2ef055
commit c38b4dcecc
2 changed files with 71 additions and 0 deletions

71
app.json Normal file
View File

@ -0,0 +1,71 @@
{
"name": "ohmyform",
"description": "Opensource alternative to TypeForm",
"repository": "https://github.com/ohmyform/ohmyform",
"logo": "https://raw.githubusercontent.com/ohmyform/ohmyform/master/public/modules/core/img/brand/logo.png",
"keywords": ["form", "survey"],
"env": {
"BASE_URL": {
"description": "Domain name where the site will be hosted",
"value": "ohmyform.herokuapp.com"
},
"MAILER_SERVICE_PROVIDER": {
"description": "Set this to any services from https://nodemailer.com/smtp/well-known/ to use a 'well-known' email provider",
"value": ""
},
"MAILER_SMTP_HOST": {
"description": "Set this if you are not using a 'MAILER_SERVICE_PROVIDER'",
"value": ""
},
"MAILER_SMTP_PORT": {
"description": "Set this if you are not using a 'MAILER_SERVICE_PROVIDER'",
"value": ""
},
"MAILER_EMAIL_ID": {
"description": "Username credential of your SMTP service",
"value": ""
},
"MAILER_PASSWORD": {
"description": "Password credential of your SMTP service",
"value": ""
},
"MAILER_FROM": {
"description": "Email address from which signup/verifications are sent",
"value": ""
},
"CREATE_ADMIN": {
"description": "Use this to automatically create an admin user on startup",
"value": "TRUE"
},
"ADMIN_EMAIL": {
"description": "The email address used by your default admin account",
"value": ""
},
"ADMIN_USERNAME": {
"description": "Username of your default admin account",
"value": "admin"
},
"ADMIN_PASSWORD": {
"description": "Password for your default admin account",
"value": ""
},
"SECRET_KEY": {
"description": "Database secret",
"generator": "secret"
},
"NODE_ENV": {
"description": "Node environment (production or development)",
"value": "production"
}
},
"addons": [
"mongolab",
"heroku-redis"
],
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB