An open API service indexing awesome lists of open source software.

https://github.com/yeisontapia/sequelize-project

Node app CLI using sequelize
https://github.com/yeisontapia/sequelize-project

cli example node nodejs sequelize

Last synced: 10 months ago
JSON representation

Node app CLI using sequelize

Awesome Lists containing this project

README

          

## sequelize project

### Instalation
npm i

### Run migrations

node_modules/.bin/sequelize db:migrate

or

npx sequelize-cli db:migrate
(use this options if you have sequelize globally installed)

### Run commands

* Create: node . --create:Contact --firstname=test --lastname=test --phone=123456 --email="test@mail.com"

* Read: node . --read:Contact