A silly toy contacts management application that I used in my StackAbuse blog article Using Sequelize.js and SQLite in an Express.js App demonstrating how to use Vue.js, Node.js, Express.js and sequelize.js in combination with a SQLite database.
- Clone repo
git clone https://github.com/amcquistan/sequelize-sqlite-express-vue.git
- install dependencies (Built with Node.js version 8.10)
cd sequelize-sqlite-express-vue/
npm install
- run migrations and seeders
node_modules/.bin/sequelize db:migrate
node_modules/.bin/sequelize db:seed:all
- start express server
npm start