-
Notifications
You must be signed in to change notification settings - Fork 23
/
app.json
89 lines (89 loc) · 2.65 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "HackathonManager",
"description": "All-in-one platform for managing hackathon registration & logistics",
"keywords": ["hackathons", "ruby on rails", "registration"],
"website": "https://coderit.org/hackathon-manager",
"repository": "https://github.com/codeRIT/hackathon-manager",
"logo": "https://coderit.org/hackathon-manager/img/coderit-square.svg",
"success_url": "/",
"scripts": {
"postdeploy": "bin/rails db:migrate",
"dokku": {
"predeploy": "bin/rails db:create",
"postdeploy": "bin/rails db:migrate"
}
},
"env": {
"DEVISE_SECRET_KEY": {
"description": "A randomly-generated secret key for devise authentication.",
"generator": "secret",
"required": true
},
"SECRET_KEY_BASE": {
"description": "A randomly-generated secret key for verifying the integrity of signed cookies.",
"generator": "secret",
"required": true
},
"MLH_KEY": {
"description": "MyMLH Application ID from https://my.mlh.io/oauth/applications",
"required": false
},
"MLH_SECRET": {
"description": "MyMLH Secret from https://my.mlh.io/oauth/applications",
"required": false
},
"AWS_BUCKET": {
"description": "S3 bucket to store resumes in",
"required": false
},
"AWS_ACCESS_KEY_ID": {
"description": "AWS Access Key ID to store resumes via S3",
"required": false
},
"AWS_SECRET_ACCESS_KEY": {
"description": "AWS Secret Access Key to store resumes via S3",
"required": false
},
"AWS_REGION": {
"description": "AWS region to store resumes via S3. If using an S3-compliant alternative without a region, leave as us-east-1.",
"value": "us-east-1",
"required": true
},
"AWS_ENDPOINT": {
"description": "If you are using an S3-compliant storage provider other than Amazon S3, specify its custom endpoint here. Otherwise leave blank.",
"value": "",
"required": false
},
"ROLLBAR_ACCESS_TOKEN": {
"description": "Rollbar access token for code exception reporting",
"required": false
},
"SENDGRID_API_KEY": {
"description": "SendGrid API key for sending email",
"required": false
},
"HM_DOMAIN_NAME": {
"description": "Domain name hosting the website (e.g. apply.example.com)",
"required": true
},
"TIME_ZONE": {
"description": "Time zone (e.g. America/New_York, default is UTC)",
"required": false
}
},
"addons": [
{
"plan": "jawsdb",
"as": "DATABASE"
},
{
"plan": "heroku-redis",
"as": "REDIS"
}
],
"buildpacks": [
{
"url": "heroku/ruby"
}
]
}