-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
66 lines (66 loc) · 2.04 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
{
"name": "ClueShed",
"description": "\"Interests and Contribs\" for your Barcamp or Lightning-Talk track",
"website": "https://conc.at/",
"repository": "https://github.com/conc-at/clueshed",
"logo": "https://conc.at/images/logos/e5fdd2a3.concat_logo.svg",
"keywords": ["schedule", "rails", "interests", "contribs", "barcamp", "lightning-talk"],
"success_url": "/",
"addons": ["heroku-postgresql:hobby-dev"],
"env": {
"APP_DOMAIN": {
"required": true,
"description": "Domain where your app can be reached. (http://<appname>.herokuapp.com)"
},
"GMAIL_USERNAME": {
"required": true,
"description": "The gmail-adress used to send confirmation mails from"
},
"GMAIL_PASSWORD": {
"required": true,
"description": "The password for the gmail-adress"
},
"CLUESHED_TITLE": {
"required": false,
"description": "Headline of the app (e.g. your event's name)"
},
"CLUESHED_SUBTITLE": {
"required": false,
"description": "Subtitle of the app (e.g. your event's motto)"
},
"CLUESHED_WEBSITE": {
"required": false,
"description": "URL to your event's main website"
},
"CLUESHED_LOGO": {
"required": false,
"description": "URL to a logo of your event."
},
"STYLE_brand_primary": {
"required": false,
"description": "The event's main color. (This is bootstrap's brand-primary variable)"
},
"SECRET_KEY_BASE": {
"generator": "secret"
},
"github_key": {
"required": true,
"description": "Go to https://github.com/settings/applications/new and register a new app. Enter the keys here."
},
"github_secret": {
"required": true,
"description": "See above"
},
"twitter_key": {
"required": true,
"description": "Go to https://apps.twitter.com/app/new and register a new app. Enter the keys here."
},
"twitter_secret": {
"required": true,
"description": "See above"
}
},
"scripts": {
"postdeploy": "bundle exec rake db:migrate"
}
}