-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
96 lines (85 loc) · 1.43 KB
/
.gitignore
File metadata and controls
96 lines (85 loc) · 1.43 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
# OS
.DS_Store
# Git
*.orig
# Node
node_modules/
.next/
dist/
build/
coverage/
*.tsbuildinfo
# Interrupted local admin installs can leave renamed dependency trees.
apps/admin/node_modules_corrupt*/
apps/admin/node_modules 2/
apps/admin/next-env.d 2.ts
apps/admin/package-lock 2.json
apps/admin/tsconfig 2.json
apps/admin/app/api/admin/session 2/
*.bak_timeout
# Bundled desktop runtime virtualenv is reproducible and should stay local-only.
apps/desktop/resources/edge/pyvenv_active/*
!apps/desktop/resources/edge/pyvenv_active/.gitkeep
apps/desktop/resources/edge/pyvenv/
apps/desktop/resources/edge/pyvenv_stale*/
apps/desktop/resources/edge/app/*
!apps/desktop/resources/edge/app/.gitkeep
# Guard against accidental nested duplicate project copies.
apps/desktop/apps/
# Rust/Tauri
target/
# Python
__pycache__/
*.pyc
.venv/
venv/
.env
.pytest_cache/
.mypy_cache/
# IDE
.vscode/
.idea/
# Build Artifacts
*.o
*.a
*.so
*.dylib
*.dll
*.exe
dist/
build/
output/
*.egg-info/
# Database & Temporary Files
*.db
*.db-*
*.sqlite
*.sqlite3
apps/edge/.sentinelid/
/.sentinelid/
logs/
*.log
tmp/
temp/
# Package Manager Artifacts
yarn.lock
# package-lock.json is intentionally tracked in selected apps
# Test Artifacts
.coverage
.coverage.*
htmlcov/
.tox/
.hypothesis/
scripts/eval/out/*.json
scripts/perf/out/*.json
scripts/perf/out/*.log
scripts/support/out/*.tar.gz
# Docker
/.dockerignore
# OS Temporary Files
Thumbs.db
*.swp
*.swo
*~
.tmp
.python-version