Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Ok, so I played a little bit with Cloud9 and yeoman 😉
Seems like your error comes mainly from the fact that yeoman is trying to goes up the tree, looking for a Gruntfile.js … Doing so it encounters an issue as the directory it tries to read are not accessible for the current user.
The first work-around is to create an empty Gruntfile.js:
Then launching “yeoman init” will ask you the standard questions and at a given point will ask you if it can overwrite the Gruntfile, which you can answer positively 😉
Then if you launch a “yeoman server”, you’ll encounter another error, due to the port the server is willing to answer.
Add the following options to your Gruntfile.js:
Note that you also need to have Compass installed (gem install compass).
Then launching “yeoman server’ will launch the server and the needed task (ending with the watch task) …
I didn’t went further down the path though 😉
Hope this helps.
