forked from salsify/avro-schema-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
30 lines (30 loc) · 811 Bytes
/
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
{
"name": "Avro Schema Registry",
"description": "Service for storing and retrieving versions of Avro schemas.",
"repository": "https://github.com/salsify/avro-schema-registry",
"keywords": [
"avro",
"schema",
"registry",
"salsify"
],
"success_url": "/success",
"env": {
"SECRET_KEY_BASE": {
"description": "Rails secret key",
"generator": "secret"
},
"SCHEMA_REGISTRY_PASSWORD": {
"description": "Password for HTTP Basic Authentication",
"generator": "secret"
},
"NEW_RELIC_APP_NAME": {
"description": "Name for this application in New Relic monitoring",
"value": "avro-schema-registry"
}
},
"addons": ["heroku-postgresql:hobby-dev", "newrelic"],
"scripts": {
"postdeploy": "bundle exec rake db:migrate"
}
}