Refactor BigQuery credentials handling in DataProcessor to use base64 encoded credentials from environment variables. Update Dockerfile and docker-compose.yml to use Bun instead of Node.js, and remove pnpm configuration. Adjust health checks and commands for Redis and Postgres services in docker-compose.yml.

This commit is contained in:
Luke Hagar
2025-10-19 21:56:34 -05:00
parent 293f297804
commit 6f98d8ab3f
6 changed files with 719 additions and 2887 deletions

View File

@@ -6,7 +6,7 @@
"scripts": {
"dev": "vite dev",
"build": "vite build",
"start": "node build/index.js",
"start": "bun run build/index.js",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
@@ -48,14 +48,12 @@
"typescript": "^5.9.2",
"vite": "^7.1.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"@tailwindcss/oxide",
"canvas",
"esbuild",
"prisma"
]
}
"trustedDependencies": [
"@prisma/client",
"@prisma/engines",
"@tailwindcss/oxide",
"canvas",
"esbuild",
"prisma"
]
}