CleverStack / cleverstack-cli

CLI for CleverStack
http://youtube.com/watch?v=-4ArURHExhQ
MIT License
196 stars 33 forks source link

clever init not working? #34

Closed kristianmandrup closed 10 years ago

kristianmandrup commented 10 years ago

Hi,

I just installed cleverstack as instructed on my Mac Air, OS 7, then ran the

$ clever init my-app

The status bars pop up at the bottom of the console, but it just stalls and nothing happens. After waiting 10 minutes or so, I had to break execution. Any dependencies or something else I'm missing? Thanks. My Internet connection 10 Mbit is working just fine...

pilsy commented 10 years ago

Hi @kristianmandrup, try running clever init my-app -v (for verbose)

kristianmandrup commented 10 years ago

It never prints anything, just stalls right away.

kmandrup:node-apps $ clever init my-app
Status @ 199.233m |   Installation Progress:      ┊   Installing: Loading...   ┊   Step: Loading...   ┊   Step Time: 0   ┊
kmandrup:node-apps $ clever init my-app -v
Status @ 116s |   Installation Progress:      ┊   Installing: Loading...   ┊   Step: Loading...   ┊   Step Time: 0   ┊

Any ideas?

kristianmandrup commented 10 years ago

Turns out this bug is caused when running node 0.11.x. I was using version 0.11.12. Works when I used node version 0.10.29.

kristianmandrup commented 10 years ago

Turns out this bug is caused when running node 0.11.x. I was using version 0.11.12. Works when I used node version 0.10.29. Running in verbose mode I get several deprecation warnings, such as:

npm WARN deprecated grunt-contrib-livereload@0.1.2: Deprecated in favor of grunt-contrib-watch which now have Livereload support built-in.

npm WARN deprecated uberclass@1.0.1: Uberclass is no longer maintained. Use Uberproto instead.

I would suggest changing:

"engines": { "node": ">=0.10.0" } to something like "node": "~0.10.0" so as not to attempt running on 0.11.x for now.

On another note, I see that it installs angular-scenario, but I believe it is deprecated in favour of protractor (which I see is also installed) ?