-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
38 lines (31 loc) · 842 Bytes
/
.gitignore
File metadata and controls
38 lines (31 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Dependencies
node_modules/
# Build artifacts
dist/
build/
*.tsbuildinfo
# Local environment + secrets
.env
.env.*
!.env.example
*.local
*.local.*
# Dev private storage runtime dir (filesystem backend; see specs/behaviors/private-storage.md).
# The seeded fixture at fixtures/private-storage-seeded/ is intentionally NOT ignored —
# it ships in the code repo so contributors can load a fake-data baseline.
private-storage/
# Dev data repo created by `npm run -w apps/api script:setup-dev-data`.
# Resolved relative to apps/api/ per .env.example's CFP_DATA_REPO_PATH default.
apps/codeforphilly-data/
codeforphilly-data/
# Agent worktrees (claude-code background agents create these here).
.claude/worktrees/
# Editor / OS
.DS_Store
.vscode/*
!.vscode/extensions.json
!.vscode/settings.shared.json
.idea/
# Logs
*.log
npm-debug.log*