From 57d2190549fd6eb8219ed75b44155f7bd3e2135e Mon Sep 17 00:00:00 2001 From: lila Date: Thu, 30 Apr 2026 00:36:28 +0200 Subject: [PATCH 1/3] adding task to prompts --- documentation/notes.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/documentation/notes.md b/documentation/notes.md index 4391d87..45f8955 100644 --- a/documentation/notes.md +++ b/documentation/notes.md @@ -12,7 +12,8 @@ task description. 4. if we go through a file, we'll do it slowly section by section, no matter how many sections 5. how to name the current feature branch? also tell me when its time to git commit and provide a commit message 6. if we have multiple options to do something, also always provide options that reflect current industry standards and best practices -7. For every completed task, produce a ticket file in documentation/tickets/. Use ADR format (adr-) for decisions between options with long-term consequences. Use feat-/fix-/chore- for routine tasks. Always include a setup guide or summary of what was done. Suggest the filename. +7. never assume anything! always ask for clarification! +8. For every completed task, produce a ticket file in documentation/tickets/. Use ADR format (adr-) for decisions between options with long-term consequences. Use feat-/fix-/chore- for routine tasks. Always include a setup guide or summary of what was done. Suggest the filename. ## tasks From 8a121442a3574197c3ce229bd9eceaaa75f1b917 Mon Sep 17 00:00:00 2001 From: lila Date: Thu, 30 Apr 2026 00:38:08 +0200 Subject: [PATCH 2/3] adding missing variables --- .env.example | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.env.example b/.env.example index 0c7804a..de7629b 100644 --- a/.env.example +++ b/.env.example @@ -1,4 +1,5 @@ DATABASE_URL=postgres://postgres:mypassword@db-host:5432/databasename +DATABASE_URL_LOCAL=postgres://postgres:mypassword@localhost:5432/databasename POSTGRES_USER=postgres POSTGRES_PASSWORD=postgres @@ -10,3 +11,8 @@ GOOGLE_CLIENT_ID= GOOGLE_CLIENT_SECRET= GITHUB_CLIENT_ID= GITHUB_CLIENT_SECRET= + +VITE_WS_URL= + +UID=1000 +GID=1000 From 1bfc0606c38e5ddb2b7d143dcea70034da5a38be Mon Sep 17 00:00:00 2001 From: lila Date: Thu, 30 Apr 2026 01:13:01 +0200 Subject: [PATCH 3/3] test: verify pre-commit hook --- apps/api/src/lib/utils.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/api/src/lib/utils.ts b/apps/api/src/lib/utils.ts index 4912c8c..67712d0 100644 --- a/apps/api/src/lib/utils.ts +++ b/apps/api/src/lib/utils.ts @@ -8,3 +8,5 @@ export const shuffleArray = (array: T[]): T[] => { } return result; }; + +// testing pre-commit hooks