forked from RaghavVishnoi/icare-master
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
74 lines (74 loc) · 2.21 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "icare",
"description": "Open Source Carpooling Platform. icare requires a valid Facebook application, check our Wiki for more information.",
"keywords": [
"Carpooling",
"Rails",
"MongoDB"
],
"website": "http://icare.diowa.com/",
"repository": "https://github.com/diowa/icare",
"success_url": "/",
"scripts": {
"postdeploy": "bundle exec rake db:mongoid:create_indexes"
},
"env": {
"RAILS_ENV": "production",
"RAILS_SERVE_STATIC_FILES": "enabled",
"APP_BASE_URL": {
"description": "Pick up a name for your application like \"yourname\" and enter here http://yourname.herokuapp.com"
},
"RUBY_GC_HEAP_OLDOBJECT_LIMIT_FACTOR": {
"description": "Reduces RGenGC's memory consumption.",
"value": "1.3"
},
"icare-master": {
"description": "The namespace of your Facebook application. Check our Wiki for more information."
},
"485975001608698": {
"description": "The ID of your Facebook application. Check our Wiki for more information."
},
"FACEBOOK_SECRET": {
"description": "The secret of your Facebook application. Check our Wiki for more information."
},
"FACEBOOK_RESTRICTED_GROUP_ID": {
"description": "Set this if you want to restrict the user registration to a specific Facebook group. (OPTIONAL)",
"required": false
},
"NEW_RELIC_APP_NAME": {
"description": "Sets the name of your application as it will appear on the New Relic dashboard.",
"value": "icare"
},
"AIRBRAKE_API_KEY": {
"description": "Airbrake API key. (OPTIONAL)",
"required": false
},
"AIRBRAKE_HOST": {
"description": "Airbrake host. (OPTIONAL)",
"required": false
},
"AIRBRAKE_PORT": {
"description": "Airbrake port. (OPTIONAL)",
"required": false
},
"GOOGLE_ANALYTICS_ID": {
"description": "Google Analytics tracker code. (OPTIONAL)",
"required": false
},
"SECRET_KEY_BASE": {
"generator": "secret"
},
"DEVISE_SECRET_KEY": {
"generator": "secret"
},
"DEVISE_PEPPER": {
"generator": "secret"
}
},
"addons": [
"mongolab:sandbox",
"newrelic",
"papertrail",
"redistogo:nano"
]
}