dockerize app

This commit is contained in:
William Diakite 2025-07-24 13:14:46 -04:00
parent a68ca93427
commit 1e363f6c66
8 changed files with 87 additions and 3 deletions

View file

@ -5,10 +5,15 @@
"private": true,
"license": "UNLICENSED",
"scripts": {
"start:dev": "dotenv -e .env.development -- node node_modules/manifest/scripts/watch/watch.js",
"start": "node node_modules/manifest/scripts/watch/watch.js",
"seed": "node node_modules/manifest/dist/manifest/src/seed/scripts/seed.js"
},
"dependencies": {
"manifest": "^4.16.2"
"manifest": "^4.16.2",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"dotenv-cli": "^9.0.0"
}
}
}