generator-hoodie
v0.3.0
Published
A generator for hoodie
Maintainers
Readme
Generator-hoodie
A yeoman generator for hoodie apps.
Getting started
- Install the generator:
npm install -g generator-hoodie - Run:
yo hoodie
Usage
After you scaffolded your project, you'll recognize a lot of folders and files in your project folder. Per default, hoodie serves files from a www folder, but that does not exist. Why you ask? Because we use grunt for development and it takes care of serving the files for our project!
Develop
- Run
grunt server. This will start hoodie in the background and open up a browser tab, serving files fromhttp://localhost:9000per default. Now grunt takes care of compiling thejadeandstylusfiles, will reload the tab on changes in our code and so on.
Deploy
- When the hoodie app is ready for prime time, run
grunt build. This will minimize and concat all the js, css, optimize images and so on. All these production ready files end up in thewwwfolder. - Copy the
wwwfolder and thepackage.jsonto your server. - Run
npm installin the project folder on your server to get all the dependencies (namely hoodie). - Start your app by calling
hoodie startin the project folder on your server.
Now hoodie should be running on some port it'll tell you in the command line. If you didn't see which one, check the data/stack.json file which contains the ports for your hoodie app, the admin console and the couchdb.


