-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
56 lines (50 loc) · 656 Bytes
/
Copy path.gitignore
File metadata and controls
56 lines (50 loc) · 656 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Secrets and local environment
.env
.env.*
!.env.example
*.pem
*.key
*.crt
*.p12
*.cer
# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
.venv/
venv/
env/
# Node / Next.js
frontend/node_modules/
frontend/.next/
frontend/out/
frontend/.npm-cache/
frontend/test-results/
frontend/playwright-report/
frontend/dev_frontend_run.log
# Build and deployment outputs
.aws-sam/
deployment/dist/
# Runtime and local state
*.sqlite-shm
*.sqlite-wal
tmp/
temp/
# Logs
*.log
*.out
*.err
artifacts/frontend_backend_logs/
artifacts/runtime_logs/
frontend/logs/
# OS / editor
.DS_Store
Thumbs.db
.idea/
.vscode/