add migration command to package.json

This commit is contained in:
counterweight 2025-08-28 22:43:21 +02:00
parent d19c057937
commit 74263b1e1c
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
2 changed files with 2 additions and 1 deletions

View file

@ -1,4 +1,4 @@
FROM debian:latest
FROM debian:12
# Install dependencies
RUN apt-get update

View file

@ -20,6 +20,7 @@
"start": "node src/app.js",
"start:container": "docker compose up -d --build",
"stop:container": "docker compose down",
"migrate": "npx sequelize-cli db:migrate",
"build": "webpack",
"watch": "webpack --watch",
"cli": "node src/cli.js",