-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
47 lines (40 loc) · 716 Bytes
/
Copy path.gitignore
File metadata and controls
47 lines (40 loc) · 716 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
# Python
__pycache__/
*.pyc
*.pyo
.pytest_cache/
# Runtime artifacts
*.jsonl
*.log
*.bak
*.bak-*
test-results/
diagnostics/
.e2e-private/
.evidence-homes/
.pytest-results/
docs/superpowers/
.superpowers/
# Local secrets
config/local.toml
config/secrets.toml
.env
# Frontend
frontend/node_modules/
frontend/dist/
# Tauri/Rust
src-tauri/target/
src-tauri/gen/
# Bundled CPython is local. Keep `.keep` so Tauri's `resources/python/*` glob
# matches on a clean checkout (otherwise `cargo test` cannot compile).
src-tauri/resources/python/*
!src-tauri/resources/python/.keep
src-tauri/resources/downloads/
# Local worktrees
.worktrees/
# OS
Thumbs.db
.DS_Store
# Generated Tauri flavor configs
.generated/
output/