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
- Host: GitHub
- URL: https://github.com/yeisontapia/sequelize-project
- Owner: YeisonTapia
- Created: 2020-04-24T20:53:58.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T03:14:43.000Z (about 3 years ago)
- Last Synced: 2025-04-12T22:55:24.906Z (10 months ago)
- Topics: cli, example, node, nodejs, sequelize
- Language: JavaScript
- Size: 210 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: readme.md
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