-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
32 lines (32 loc) · 966 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
31
32
{
"name": "Cyanometer",
"description": "Various Cyanometer installation locations post image & blueness meta data to the API. The web front end consumes this information and presents an interface to view and navigate the image archive.",
"repository": "https://github.com/msp/cyanometer",
"keywords": ["elixir", "phoenix", "cyanometer"],
"website": "https://cyanometer.net/",
"addons": [
"heroku-postgresql:hobby-dev"
],
"env": {
"MIX_ENV": "test",
"SECRET_KEY_BASE": {
"generator": "secret"
}
},
"buildpacks": [
{ "url": "https://github.com/HashNuke/heroku-buildpack-elixir.git" },
{ "url": "https://github.com/gjaldon/heroku-buildpack-phoenix-static.git" }
],
"environments": {
"test": {
"addons":[
"heroku-postgresql:in-dyno"
],
"scripts": {
"test-setup": "MIX_ENV=test mix ecto.migrate",
"test": "MIX_ENV=test mix test"
}
}
},
"success_url": "/"
}