Created
July 29, 2013 01:02
-
-
Save adamalex/6101546 to your computer and use it in GitHub Desktop.
Deploying to Stackato using Heroku's Node buildpack
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "nodeweb", | |
"version": "0.0.1", | |
"engines": { | |
"node": "0.10.x" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
web: node app.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: nodeweb | |
instances: 1 | |
framework: | |
type: buildpack | |
env: | |
BUILDPACK_URL: git://github.com/heroku/heroku-buildpack-nodejs.git | |
mem: 128 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment