A prototype for a food ordering application using AngularJS works on localStorage
.
An online demo is hosted on Heroku.
- Use any webserver to host the
dist/
directory - eg. Run the build in PHP 5.4+ server
php -S localhost:8000
- Use the NodeJS server
web.js
- Clone/download the repository and
cd
into it. - Run
npm install --production
to install application dependencies - Run
node web.js
to launch web server - Navigate your browser to
http://localhost:5000
- Clone/download the repo and
cd
into it. - Install NodeJS dependencies
npm install
- Install app dependencies listed in bower.json
bower install
which will download the dependencies toapp/bower_components
directory. - Run
grunt serve
to open in browser with livereload. - To Build run
grunt build
which will run the grunt build script tp minify and concatnate scripts/styles and save it in thedist/
directory. - App Files are located in the
app/
directory.