Node app to find bike rack in Chicago Neighborhoods. Currently, this is only showing racks in the loop neighborhood, but I'm planning on adding more soon.
- Clone
- Run
npm i
to install node modules - Run
bower i
to install bower components - Run
npm start
which will automatically run the defaultgrunt
task compiling coffeescript from thesrc/
directory into javascript in theclient/
directory. Then, a node server will start onlocalhost:3000
. - Changes to files in the
templates/
andstylesheet
directorys will re-compile on the fly. If you'd like to make changes to the coffeescripts, rungrunt watch
in another terminal window.
To deploy to surge
- Run
npm -g surge
to install surge. - In
dev_config.json
, changeisDev
tofalse
. - Run
npm start
which will serve minified assets and create a_build
directory. - In terminal run
surge _build/
.