-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
66 lines (58 loc) · 1.69 KB
/
Copy path.gitignore
File metadata and controls
66 lines (58 loc) · 1.69 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# ── Core Python content ─────────────────────
core-python/**/__pycache__/
core-python/**/*.py[cod]
core-python/**/*$py.class
core-python/**/.pytest_cache/
core-python/**/.mypy_cache/
core-python/**/.ruff_cache/
core-python/**/temp_demo/
core-python/**/sample.txt
core-python/**/data.json
core-python/**/students.csv
core-python/**/products.csv
core-python/**/ctx_demo.txt
# ── FastAPI project ─────────────────────────
backend-with-fastapi/**/__pycache__/
backend-with-fastapi/**/*.py[cod]
backend-with-fastapi/**/.pytest_cache/
backend-with-fastapi/task-api/task_api.db
backend-with-fastapi/task-api/.venv/
backend-with-fastapi/**/.ruff_cache/
# ── GenAI projects ───────────────────────────
fullstack-genai/**/__pycache__/
fullstack-genai/**/*.py[cod]
fullstack-genai/**/.pytest_cache/
fullstack-genai/rag-assistant/backend/.venv/
fullstack-genai/rag-assistant/backend/data/
fullstack-genai/rag-assistant/frontend/node_modules/
fullstack-genai/rag-assistant/frontend/.next/
fullstack-genai/support-agent/backend/.venv/
fullstack-genai/support-agent/backend/data/
fullstack-genai/support-agent/frontend/node_modules/
fullstack-genai/support-agent/frontend/.next/
# Virtual environments
.venv/
venv/
env/
ENV/
# Distribution / packaging
*.egg-info/
*.egg
# Testing & coverage
.coverage
htmlcov/
# Environment & secrets
.env
.env.*
!.env.example
*.pem
credentials.json
# ── IDE & OS ────────────────────────────────
.idea/
.vscode/
*.swp
*.swo
.DS_Store
Thumbs.db
# Jupyter
.ipynb_checkpoints/