-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathapp.json
32 lines (32 loc) · 988 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": "TestTrack Server",
"description": "split testing and feature gating system",
"keywords": [
"split",
"a/b",
"ab",
"multivariate",
"feature",
"gate",
"flag"
],
"repository": "https://github.com/Betterment/test_track",
"success_url": "/admin",
"scripts": {
"postdeploy": "bundle exec rake db:setup"
},
"env": {
"WHITELIST_CORS_HOSTS": {
"description": "(Optional) A comma-separated list of domains allowed to connect to TestTrack from web browsers via the JS client",
"value": "myapp.example.com,www.example.org",
"required": false
},
"BROWSER_EXTENSION_SHARED_SECRET": {
"description": "(Optional) The secret generated by the Chrome Extension. See https://github.com/Betterment/test_track_chrome_extension",
"required": false
}
},
"addons": [
"heroku-postgresql"
]
}