-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
40 lines (36 loc) · 962 Bytes
/
Copy path.gitignore
File metadata and controls
40 lines (36 loc) · 962 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
39
40
# ---- Secrets ----------------------------------------------------------------
.env
.env.*
!.env.example
# Client-side Vite vars are baked into the public JS bundle regardless of how
# they're set — never secret, and Cloudflare's build needs this committed.
!frontend/.env.production
# ---- Python -----------------------------------------------------------------
__pycache__/
*.py[cod]
*.egg-info/
.venv/
venv/
.pytest_cache/
.ruff_cache/
.mypy_cache/
.coverage
coverage.xml
htmlcov/
# ---- Node -------------------------------------------------------------------
node_modules/
dist/
.vite/
*.tsbuildinfo
npm-debug.log*
# ---- Uploads ----------------------------------------------------------------
# User photos are data, not source. Back these up separately.
backend/uploads/*
!backend/uploads/.gitkeep
# ---- Editors / OS -----------------------------------------------------------
.vscode/*
!.vscode/extensions.json
.idea/
.DS_Store
Thumbs.db
*.swp