accent/app.json

59 lines
1.6 KiB
JSON

{
"name": "Accent",
"description": "▴ Open-source, self-hosted, developer-oriented translation tool",
"keywords": [
"elixir",
"ember.js",
"i18n",
"translations"
],
"website": "https://www.accent.reviews",
"repository": "https://github.com/mirego/accent",
"logo": "https://raw.githubusercontent.com/mirego/accent/master/priv/static/images/accent.png",
"success_url": "/",
"scripts": {
"postdeploy": "mix do ecto.migrate, run ./priv/repo/seeds.exs"
},
"env": {
"WEBAPP_URL": {
"description": "The URL of the app. Used in sent emails and to redirect from external services to the app in the authentication flow.",
"value": "https://this-heroku-app-name.herokuapp.com",
"required": true
},
"FORCE_SSL": {
"description": "If the app should always be served by https (and wss for websocket)",
"value": "true",
"required": false
},
"DUMMY_LOGIN_ENABLED": {
"description": "The default login to quickly test the instance. It only requires the user to enter a valid email to login.",
"value": "true",
"required": false
},
"MIX_ENV": {
"description": "The environment in which Elixir code will run",
"value": "prod",
"required": true
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.6"
}
}
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-apt#usr-local-paths"
},
{
"url": "https://github.com/HashNuke/heroku-buildpack-elixir"
},
{
"url": "https://github.com/gjaldon/heroku-buildpack-phoenix-static"
}
]
}