sequelize-sqlite-express-vue icon indicating copy to clipboard operation
sequelize-sqlite-express-vue copied to clipboard

sequelize-sqlite-express-vue

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.

Usage

  1. Clone repo
git clone https://github.com/amcquistan/sequelize-sqlite-express-vue.git
  1. install dependencies (Built with Node.js version 8.10)
cd sequelize-sqlite-express-vue/
npm install
  1. run migrations and seeders
node_modules/.bin/sequelize db:migrate
node_modules/.bin/sequelize db:seed:all
  1. start express server
npm start