make deployment easier (#225)

This commit is contained in:
Jozef Dochan
2025-05-22 15:08:13 +02:00
committed by GitHub
parent d2934e8da4
commit 575c4cbedb
13 changed files with 318 additions and 261 deletions

View File

@@ -5,9 +5,9 @@
"scripts": {
"start": "node --env-file=.env index",
"dev": "node index",
"migrate": "bash scripts/migrate.sh",
"seed": "bash scripts/seed.sh",
"drop": "bash scripts/drop.sh"
"migrate": "sequelize db:migrate",
"seed": "sequelize db:seed:all",
"drop": "sequelize db:migrate:undo:all"
},
"author": "",
"license": "ISC",