2018-04-07 16:57:53 +03:00
{
"name" : "Accent" ,
2018-04-16 13:01:01 +03:00
"description" : "▴ Open-source, self-hosted, developer-oriented translation tool" ,
2018-04-07 16:57:53 +03:00
"keywords" : [
"elixir" ,
2018-04-09 17:04:04 +03:00
"ember.js" ,
2018-04-07 16:57:53 +03:00
"i18n" ,
"translations"
] ,
"website" : "https://www.accent.reviews" ,
"repository" : "https://github.com/mirego/accent" ,
2018-04-16 13:00:13 +03:00
"logo" : "https://raw.githubusercontent.com/mirego/accent/master/priv/static/images/accent.png" ,
2018-04-07 16:57:53 +03:00
"success_url" : "/" ,
"scripts" : {
2018-04-09 17:17:46 +03:00
"postdeploy" : "mix do ecto.migrate, run ./priv/repo/seeds.exs"
2018-04-07 16:57:53 +03:00
} ,
2018-04-13 14:29:45 +03:00
"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"
} ,
2018-07-02 17:08:41 +03:00
"CANONICAL_HOST" : {
"description" : "The host that will be used to build internal URLs" ,
"value" : "this-heroku-app-name.herokuapp.com"
} ,
2018-04-13 14:29:45 +03:00
"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
}
} ,
2018-04-07 16:57:53 +03:00
"addons" : [
{
"plan" : "heroku-postgresql" ,
"options" : {
2018-04-16 13:01:31 +03:00
"version" : "9.6"
2018-04-07 16:57:53 +03:00
}
}
] ,
"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"
}
]
}