aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.gitignore
blob: 81ca5c5d7627d8ea3100b47d6d0a3c4ac1a07f3c (plain) (blame)
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
# target
target/

# lock file
Cargo.lock

# Tauri dev files
src-tauri/gen/

# Python version
.python-version

# Ruff
.ruff_cache/

# ESLint
.eslintcache

# Svelte
.svelte-kit/

# Node.js
node_modules/

# Python Build
dist/
__pycache__/

# Tauri artifacts
artifacts/

# Local secrets (do not commit)
.env
.env.local

# AUR Release
release/

# claude code
.claude/

# Vscode
.vscode/