Skip to content

amcquistan/sequelize-sqlite-express-vue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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