-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json.tt
96 lines (96 loc) · 1.71 KB
/
app.json.tt
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "wheel",
"scripts": {
"postdeploy": "bundle exec rake db:migrate && bundle exec rake setup_sample_data"
},
"env": {
"AWS_ACCESS_KEY_ID": {
"required": true
},
"AWS_SECRET_ACCESS_KEY": {
"required": true
},
"AWS_S3_BUCKET_NAME": {
"required": true
},
"FACEBOOK_ID": {
"required": true
},
"FACEBOOK_SECRET": {
"required": true
},
"GOOGLE_ID": {
"required": true
},
"GOOGLE_SECRET": {
"required": true
},
"HEROKU_APP_NAME": {
"required": true
},
"INVOKE_WORKER_AUTOMATICALLY": {
"value": "enabled"
},
"LINKEDIN_ID": {
"required": true
},
"LINKEDIN_SECRET": {
"required": true
},
"LOG_LEVEL": {
"value": "DEBUG"
},
"MAILGUN_API_KEY": {
"required": true
},
"MAILGUN_PUBLIC_API_KEY": {
"required": true
},
"MANDRILL_API_KEY": {
"required": true
},
"MAX_THREADS": {
"value": "2"
},
"SECRET_KEY_BASE":{
"required":true
},
"RACK_ENV": {
"value": "staging"
},
"RAILS_ENV": {
"value": "staging"
},
"ROLLBAR_ACCESS_TOKEN": {
"required": true
},
"SEGMENTIO_WRITE_KEY": {
"required": true
},
"TWILIO_ACCOUNT_SID": {
"required": true
},
"TWILIO_AUTH_TOKEN": {
"required": true
},
"TWILIO_FROM_NUMBER": {
"required": true
},
"TWITTER_ID": {
"required": true
},
"TWITTER_SECRET": {
"required": true
},
"WEB_CONCURRENCY": {
"value": "1"
}
},
"formation": { },
"addons": [
"heroku-postgresql",
"memcachedcloud",
"papertrail"
],
"buildpacks": [ ]
}