because I got bored of customising my CV for every job
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(CVG-36,CVG-37): include templates in build output, fix heartbeat query

+2 -1
+1
apps/server/package.json
··· 5 5 "type": "commonjs", 6 6 "scripts": { 7 7 "build": "tsup", 8 + "postbuild": "sh scripts/post-build.sh", 8 9 "start": "node dist/main.js", 9 10 "dev": "nodemon --watch src -e ts --exec \"ts-node -r tsconfig-paths/register src/main.ts\"", 10 11 "lint": "biome check .",
+1 -1
apps/worker/src/heartbeat/db-heartbeat.strategy.ts
··· 30 30 this.lastWriteAt = now; 31 31 32 32 await this.pool.query( 33 - `INSERT INTO queue.worker_heartbeats (worker_id, last_seen_at) 33 + `INSERT INTO worker_heartbeats (worker_id, last_seen_at) 34 34 VALUES ($1, now()) 35 35 ON CONFLICT (worker_id) 36 36 DO UPDATE SET last_seen_at = now()`,