Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .githooks/post-checkout
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
td-cli context-warm --force
2 changes: 2 additions & 0 deletions .githooks/post-merge
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
td-cli context-warm --force
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ diff.txt
# Environment
.env*
!.env.example
.venv/
!.env*.example
.vercel

Expand Down
21 changes: 21 additions & 0 deletions project_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"github_repo": "arii/hrm",
"base_branch": "origin/main",
"core_dirs": [
"src/components/",
"src/features/",
"src/pages/"
],
"audit_check_dirs": [
"src/components",
"src/pages",
"src/layouts",
"src/App.tsx"
],
"vite_base_path": "/hrm/",
"ai_token_input_limit": 800000,
"ai_token_output_limit": 200000,
"ai_token_total_limit": 1000000,
"max_ci_duration_minutes": 15,
"visual_snapshot_pixel_threshold": 0.1
}
Loading