Skip to content

Instantly share code, notes, and snippets.

View blakmatrix's full-sized avatar
🧿
You may be gone tomorrow, but that doesn't mean that you weren't here today.

❀️ Farrin Reid blakmatrix

🧿
You may be gone tomorrow, but that doesn't mean that you weren't here today.
View GitHub Profile
PS C:\Users\fred rosak> cd .\projects
PS C:\Users\fred rosak\projects> jitsu install
path.existsSync is now called `fs.existsSync`.
info: Welcome to Nodejitsu blakmatrix
info: It worked if it ends with Nodejitsu ok
info: Executing command install
help: The install command downloads pre-built node applications
help: To continue, you will need to select an application
info: Please choose a node app so we can get you started
PS C:\Users\fred rosak\projects\socket.io> jitsu apps start Olive
path.existsSync is now called `fs.existsSync`.
info: Welcome to Nodejitsu blakmatrix
info: It worked if it ends with Nodejitsu ok
info: Executing command apps start Olive
info: Starting app Olive
error: Error running command apps start Olive
error: Nodejitsu Error (500): Internal Server Error
error:
error: There was an error while attempting to start your application.
[blakmatrix@li225-26]16 projects:\> git clone git@github.com:blakmatrix/olive.git
Initialized empty Git repository in /home/blakmatrix/projects/olive/.git/
remote: Counting objects: 482, done.
remote: Compressing objects: 100% (237/237), done.
remote: Total 482 (delta 237), reused 482 (delta 237)
Receiving objects: 100% (482/482), 153.43 KiB, done.
Resolving deltas: 100% (237/237), done.
[blakmatrix@li225-26]17 projects:\> cd olive
[blakmatrix@li225-26]18 olive:\> jitsu deploy
info: Welcome to Nodejitsu blakmatrix
User/App: fiestah/fiestah-test
node -v: 0.6.18
npm -v: 1.1.31
jitsu -v: 0.8.9
Logs:
adamantia:helloworld marvin$ jitsu env list
info: Welcome to Nodejitsu fiestah
info: It worked if it ends with Nodejitsu ok
{
version: '0.0.1-216',
subdomain: 'knack',
private: true,
engines: { node: '0.6.x' },
domains: [ 'knackhq.com' ],
name: 'Knack',
dependencies: {
clone: '0.0.6',
express: '2.5.5',
@blakmatrix
blakmatrix / jitsubug
Created July 3, 2012 06:11 — forked from flufy3d/jitsubug
jitsu deploy log
E:\github\deliverance\client>jitsu deploy
info: Welcome to Nodejitsu flufy3d
info: It worked if it ends with Nodejitsu ok
info: Executing command deploy
info: Analyzing your application dependencies in app.js
warn: Local version appears to be old
warn: Your package.json version will be incremented for you automatically
warn: About to write E:\github\deliverance\client\package.json
data:
data: {
@blakmatrix
blakmatrix / command line shell
Created July 3, 2012 08:57
Getting Meteor wordplay up on nodejitsu/jitsu
meteor create --example wordplay
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
@blakmatrix
blakmatrix / command line shell
Created July 3, 2012 09:07
Getting Meteor todos up on nodejitsu/jitsu
meteor create --example todos
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
@blakmatrix
blakmatrix / command line shell
Created July 3, 2012 09:09
Getting Meteor leaderboard up on nodejitsu/jitsu
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