feat(db): db stuff added in starting migration from old app

This commit is contained in:
2025-08-31 15:01:50 -05:00
parent f348e4e053
commit 2d5fbbbab0
11 changed files with 965 additions and 36 deletions

View File

@@ -22,7 +22,9 @@
"start": "dotenvx run -f .env -- npm run start:app",
"docker": "docker compose up --build --force-recreate -d",
"commit": "cz",
"deploy": "standard-version --conventional-commits && npm run build"
"deploy": "standard-version --conventional-commits && npm run build",
"db:migrate": "npx drizzle-kit push",
"db:generate": "npx drizzle-kit generate"
},
"repository": {
"type": "git",
@@ -34,8 +36,12 @@
"type": "module",
"dependencies": {
"@dotenvx/dotenvx": "^1.49.0",
"drizzle-kit": "^0.31.4",
"drizzle-orm": "^0.44.5",
"express": "^5.1.0",
"morgan": "^1.10.1"
"morgan": "^1.10.1",
"pg": "^8.16.3",
"postgres": "^3.4.7"
},
"devDependencies": {
"@types/express": "^5.0.3",