forked from TomerAberbach/hackathon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
35 lines (35 loc) · 992 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
33
34
35
{
"name": "Hackathon",
"description": "A hackathon web application with a comprehensive administrative backend, email infrastructure, attendee registration, and optional MLH integration.",
"repository": "https://github.com/TomerAberbach/hackathon",
"keywords": ["hackathon", "rails", "ruby", "mlh"],
"success_url": "/dashboard",
"env": {
"DOMAIN": {
"description": "The domain name of the website (e.g. hacktcnj.com).",
"value": "YOUR DOMAIN NAME"
},
"ADMIN_EMAIL": {
"description": "An email address to send an admin account invite to. The recipient will become the super admin of the website.",
"value": "YOUR EMAIL ADDRESS"
}
},
"addons": [
"sendgrid",
"cloudinary"
],
"buildpacks": [
{
"url": "heroku/ruby"
},
{
"url": "https://github.com/heroku/heroku-buildpack-activestorage-preview"
}
],
"scripts": {
"postdeploy": "rails db:migrate db:seed"
},
"web": {
"quantity": 1
}
}