feat: set up announcement and cors logic for server

This commit is contained in:
2025-07-05 15:43:23 -07:00
parent a12f2b0315
commit 42bad8c6c8
14 changed files with 548 additions and 102 deletions

View File

@ -6,6 +6,7 @@
"type": "module",
"scripts": {
"lint": "eslint ./src --max-warnings 0",
"dev": "op run --env-file=./dev.env -- tsx watch ./src/index.ts",
"build": "tsc",
"start": "op run --env-file=./prod.env -- node ./prod/index.js",
"test": "echo 'No tests yet' && exit 0"
@ -16,9 +17,12 @@
"packageManager": "pnpm@10.12.3",
"dependencies": {
"@nhcarrigan/logger": "1.0.0",
"@prisma/client": "6.11.1",
"fastify": "5.4.0"
},
"devDependencies": {
"@types/node": "24.0.10"
"@types/node": "24.0.10",
"prisma": "6.11.1",
"tsx": "4.20.3"
}
}