Skip to content

Instantly share code, notes, and snippets.

@evantahler
Created February 6, 2013 04:42
Show Gist options
  • Save evantahler/4720365 to your computer and use it in GitHub Desktop.
Save evantahler/4720365 to your computer and use it in GitHub Desktop.
Can't boot actionHero on nodejitsu
nfo: Creating snapshot 4.3.1-7
info Uploading: [=============================] 100%
info: Updating app actionHero
info: Activating snapshot 4.3.1-7 for actionHero
info: Starting app actionHero
error: Error running command deploy
error: Nodejitsu Error (500): Internal Server Error
error: There was an error while attempting to deploy the app
error:
error: package.json error: can't find starting script: node ./bin/actionHero start
error: Package.json start script declared but not found
error:
error: This type of error is usually a user error.
error: Error output from Haibu:
error:
error: Error: package.json error: can't find starting script: node ./bin/actionHero start
error: at Spawner.spawn (/root/haibu-orchestra/node_modules/haibu/lib/haibu/core/spawner.js:232:17)
error: at Object.oncomplete (fs.js:297:15)
help: For help with this error contact Nodejitsu Support:
help: webchat: <http://webchat.nodejitsu.com/>
help: irc: <irc://chat.freenode.net/#nodejitsu>
help: email: <support@nodejitsu.com>
help:
help: Copy and paste this output to a gist (http://gist.github.com/)
info: Nodejitsu not ok
@silend
Copy link

silend commented Feb 13, 2013

Hello, I am having the same issue with booting actionHero on nodejitsu. Can you provide a solution how to make this work, since I have seen your tweet that you finally succeeded deploying actionHero to nodejitsu?

Thanks.

@silend
Copy link

silend commented Feb 19, 2013

Hi, this start script in package.json worked for me for hosting actionHero on nodejitsu:

"scripts": {
    "start": "node node_modules/actionHero/bin/actionHero",
    "actionHero": "node node_modules/actionHero/bin/actionHero"
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment