accent/app.json
2018-07-02 10:17:48 -04:00

67 lines
2.1 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": {
"API_HOST": {
"description": "The URL to which the Web application will connect for API requests",
"value": "https://this-heroku-app-name.herokuapp.com"
},
"API_WS_HOST": {
"description": "The URL to which the Web application will connect for Websocket sessions",
"value": "wss://this-heroku-app-name.herokuapp.com"
},
"CANONICAL_HOST": {
"description": "The host that will be used to build internal URLs",
"value": "this-heroku-app-name.herokuapp.com"
},
"FORCE_SSL": {
"description": "Whether to force HTTPS requests to the Web application and the API",
"value": "true"
},
"GOOGLE_API_CLIENT_ID": {
"description": "The Google API OAuth client ID that will be used to authenticate users. You can create a “Web application”-type credential at https://console.developers.google.com/apis/credentials",
"value": "google-api-client-id.apps.googleusercontent.com"
},
"MIX_ENV": {
"description": "The environment in which Elixir code will run",
"value": "prod"
},
"RESTRICTED_DOMAIN": {
"description": "If specified, only authenticated users from this domain name will be able to create projects",
"required": false
}
},
"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"
}
]
}