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.

chore: update .gitignore for test artifacts and local configs

+41 -5
+9 -1
.env.example
··· 22 22 # Prisma 23 23 PRISMA_ENABLE_TRACING=false 24 24 VITE_DOCS_URL=http://localhost:3001 25 - ENCRYPTION_KEY=94caadf1e9765adf9d89fc3c440f4b67651ec85b3bc0cf8fe3b0e1db2c585779 25 + ENCRYPTION_KEY=94caadf1e9765adf9d89fc3c440f4b67651ec85b3bc0cf8fe3b0e1db2c585779 26 + # AI/LLM Configuration 27 + LLAMA_URL=http://llama:8080 28 + MODEL_PATH=/models/mistral-7b-instruct-v0.2.Q4_K_M.gguf 29 + 30 + # LinkedIn OAuth (Future) 31 + # LINKEDIN_CLIENT_ID= 32 + # LINKEDIN_CLIENT_SECRET= 33 + # LINKEDIN_REDIRECT_URI=http://localhost:5173/auth/linkedin/callback
+32 -4
.gitignore
··· 32 32 *.pid 33 33 docker/*.pid 34 34 db-data 35 + ai-models/ 35 36 36 37 # Generated files (exclude from git but keep local copies for syntax highlighting) 37 38 **/generated/ ··· 56 57 # Lerna 57 58 lerna-debug.log 58 59 59 - # AI assistant rules (local preferences) 60 - .claude/ 61 - .cursorrules 62 - CLAUDE.md 60 + # Personal/local gitignore (for cursor, claude, etc.) 61 + .gitignore.local 62 + 63 + # Build info files 64 + *.tsbuildinfo 65 + 66 + # Test artifacts and scripts 67 + test-cv* 68 + test-*.py 69 + test-*.sh 70 + test-prompt.json 71 + 72 + # Coverage reports (outside coverage/) 73 + **/coverage-unit/ 74 + 75 + # Worktrees 76 + .worktree/ 77 + .worktrees/ 78 + 79 + # Local documentation 80 + AI_PARSING_FIXES.md 81 + DOCKER_GPU.md 82 + GPU_SETUP.md 83 + LLAMA_MODES.md 84 + 85 + # Docker compose overrides 86 + docker-compose.override.yml* 87 + docker-compose.nvidia.yml 88 + 89 + # Local scripts 90 + scripts/