Added heroku app.json manifest

This commit is contained in:
DC*
2014-08-17 01:47:10 -03:00
parent 7b6a87a58b
commit 9f80f34950
2 changed files with 22 additions and 0 deletions
+6
View File
@@ -12,6 +12,12 @@ An open-source [Workflowy](http://workflowy.com) clone.
##Heroku deploy
You can use our one-click heroku deploy:
[![Deploy](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy)
or proced manually as follow:
* heroku create --stack cedar
* heroku addons:add heroku-postgresql:dev
* heroku config:set NODE_ENV=production
+16
View File
@@ -0,0 +1,16 @@
{
"name": "HackFlowy",
"description": "Workflowy clone, built using Backbone.js & Socket.io",
"keywords": ["express", "backbone", "socket.io"],
"website": "https://github.com/abhshkdz/HackFlowy",
"repository": "https://github.com/abhshkdz/HackFlowy",
"scripts": {
"postdeploy": ""
},
"env": {
"NODE_ENV": "production"
},
"addons": [
"heroku-postgresql:dev"
]
}