Hook up syncing with postgres

This commit is contained in:
Dominic Ferrando
2026-07-03 12:54:50 -04:00
parent 934c523bf9
commit fc9cd6f1ae
9 changed files with 261 additions and 216 deletions
+3 -5
View File
@@ -11,9 +11,7 @@
"scripts": {
"dev": "bun run --hot src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build --compile --minify-whitespace --minify-syntax --target bun-linux-x64 --outfile dist/server src/index.ts",
"db:codegen": "bunx kysely-codegen --env-file .env.development",
"db:seed": "bun run src/database/seed.ts"
"build": "bun build --compile --minify-whitespace --minify-syntax --target bun-linux-x64 --outfile dist/server src/index.ts"
},
"dependencies": {
"@blade-and-brawn/calculator": "workspace:*",
@@ -25,13 +23,13 @@
"@types/pg": "^8.20.0",
"elysia": "^1.4.29",
"kysely": "^0.29.2",
"kysely-codegen": "^0.20.0",
"ml-levenberg-marquardt": "^5.0.1",
"pg": "^8.22.0",
"pino": "^10.3.1",
"zipcodes-us": "^1.1.3"
},
"devDependencies": {
"pino-pretty": "^13.1.3"
"pino-pretty": "^13.1.3",
"kysely-codegen": "^0.20.0"
}
}