Created
July 3, 2012 09:09
-
-
Save blakmatrix/3038664 to your computer and use it in GitHub Desktop.
Getting Meteor leaderboard up on nodejitsu/jitsu
This file contains hidden or 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
| meteor create --example leaderboard | |
| meteor bundle myapp.tgz | |
| tar xzf myapp.tgz | |
| cd bundle | |
| (create package json with settings below) | |
| jitsu databases create mongo <dbname> | |
| (grab dbstring) | |
| jitsu env set PORT 3000 | |
| jitsu env set MONGO_URL <dbstring> | |
| jitsu deploy |
This file contains hidden or 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": "meteor-leaderboard", | |
| "subdomain": "meteor-leaderboard", | |
| "scripts": { | |
| "start": "node main.js" | |
| }, | |
| "version": "0.0.0-20", | |
| "engines": { | |
| "node": "0.6.x" | |
| }, | |
| "dependencies": { | |
| "fibers": "0.6.x", | |
| "qs": "~0.5.0", | |
| "mime": "1.2.5", | |
| "formidable": "~1.0.11", | |
| "express": "~2.5.11", | |
| "wordwrap": "0.0.2", | |
| "sockjs": "~0.3.1", | |
| "mongodb": "~1.0.2", | |
| "connect": "1.8.7", | |
| "gzippo": "0.1.4", | |
| "optimist": "0.3.1", | |
| "handlebars": "1.0.5beta", | |
| "useragent": "1.0.6" | |
| }, | |
| "noAnalyze": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note1: The above list of dependencies is likely out-of-date. You can look these up in the individual packages installed in the bundle's node_modules folder.
Note2:
fibersis often difficult to install. Unfortunately, Nodejitsu does not support the fibers library.