-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
114 lines (98 loc) · 1.55 KB
/
Copy path.gitignore
File metadata and controls
114 lines (98 loc) · 1.55 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# .gitignore
.env
.env.local
.env.*.local
# Local Python/runtime artifacts
.venv/
venv/
env/
__pycache__/
*.pyc
*.py[cod]
*$py.class
*.so
.Python
ENV/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
# Anchored: only ignore top-level lib/ / lib64/ from Python venvs.
# Without the leading slash, these patterns silently catch
# frontend/src/lib/ and break the frontend TypeScript build.
/lib/
/lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Logs
logs/
*.log
alpha_ai.log
scheduler.log
# Reports (opcjonalnie - możesz je commitować)
# reports/
# Data
data/
.DS_Store
output/
tmp/
# Cache
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
graphify-out/
.graphify-cache/
# Docker
.docker/
# Windows local folder metadata
desktop.ini
# Frontend artifacts
node_modules/
dist/
build/
*.tsbuildinfo
frontend/vite.config.d.ts
frontend/vite.config.js
# Playwright output — local only, never commit
frontend/test-results/
frontend/playwright-report/
# Local secrets
.env.*
!.env.example
# Local UI prototypes
_prototypes/
# PyInstaller generated artifacts — local-only, never commit
*.spec
*.exe
# Tauri / Rust desktop build output — local-only, never commit
frontend/src-tauri/target/
frontend/src-tauri/gen/
# Allow the non-secret desktop build env example (public backend URL only)
!.env.desktop.example
# Packaged archives and local backups
*.zip
*.zip.bak-*
*.bak
# Local build/test output
coverage/
htmlcov/
.coverage.*
reports/local/
results/local/
frontend/.vite/
frontend/coverage/
frontend/.turbo/