Web application of an ecommerce store.
-
clone the repo
git clone https://github.com/brandedcow/grocery_store.git
-
install app dependencies
cd grocery_store && npm install
-
start app
node server.js
Backend Setup:
-
install mysql
brew update && brew install mysql
-
start mysql
mysql.server start
-
create database
mysql -u root -e 'create database grocery_store_database'
-
migrate tables
knex migrate:latest
-
clone repo
git clone https://github.com/brandedcow/grocery_store.git
-
install node
https://nodejs.org/en/
-
go to directory grocery_store and install dependencies
cd grocery_store && npm install
-
start server
npm start
Backend Setup:
-
install mysql via Windows installer
use Developer Settings
-
take care of any dependencies required by mysql
Could include microsoft visual c++ distributables or .net frameworks
-
Using MySQL Notifier, start instance
-
Using MySQL WorkBench, create new SCHEMA called grocery_store_database
-
migrate tables
knex migrate:latest
- Platform: node
- Framework: express
- Template Engine: angularjs
- CSS Framework: bootstrap
- CSS Preprocessor: css
- JavaScript Framework: angularjs
- Build Tool: none
- Database: mysql
- Authentication: email
- Deployment: heroku
MIT License (mit) Copyright 2018 r3klaw
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.