Yeoman generator for Capital Framework.
Install Yeoman and the Capital Framework generator:
npm install -g yo generator-cfCreate a new project directory and cd to it:
mkdir my-new-project && cd $_Run the Capital Framework generator:
yo cfCompile the assets:
gulpA demo page is generated at:
./dist/index.htmlTo view this page, run a simple server so that the assets resolve correctly:
cd ./dist/
python -m SimpleHTTPServerAnd visit http://localhost:8000/ in a web browser.
Build your project!
To hack on this generator, fork this repo, clone it and use npm link:
$ cd generator-cf
$ npm link
$ cd some-empty-directory-somewhere
$ npm link generator-cf
$ yo cfEdit the source files and re-run yo cf to see the changes.
Please modify the current tests or write new tests if you add functionality to the generator.
Tests can be executed by running npm test from the project's root.

