-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
29 lines (27 loc) · 911 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
{
"name": "Haven",
"description": "Run your own private blog instead of using Facebook",
"website": "https://havenweb.org",
"repository": "https://github.com/havenweb/haven",
"logo": "https://havenweb.org/512.png",
"buildpacks": [
{ "url": "heroku/nodejs" },
{ "url": "heroku/ruby" }
],
"env": {
"HAVEN_DEPLOY":{
"description": "Where to store uploaded images (set to 'local' for Heroku)",
"value": "local"
},
"USER_EMAIL":{
"description": "Your email, used create the first user account on your Haven",
"value": "[email protected]"
},
"USER_PASS":{
"description": "The initial password for the first user account",
"value": "ChangeMeN0W!"
}
},
"scripts": { "postdeploy": "bin/rails r deploymentscripts/lib/ruby/create_user.rb $USER_EMAIL $USER_PASS" },
"keywords": ["haven", "private", "blog", "rss", "ruby", "rails"]
}