blob: 7890d39bece523dc814e4418e5980ab84fb51d1e (
plain)
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
|
# Rust build artifacts (except the final binary)
target/debug/
target/*/incremental/
target/*/deps/
target/*/.fingerprint/
target/*/build/
target/doc/
target/package/
target/publish/
target/install/
# Rust source (not needed in container)
src/
Cargo.toml
Cargo.lock
# Git
.git/
.gitignore
# IDE
.vscode/
.idea/
# OS
.DS_Store
Thumbs.db
# Frontend dev dependencies
frontend/node_modules/
frontend/.turbo/
# Logs
*.log
log.txt
# Blob storage (should be mounted as volume)
blobs/
miei/
# Development files
tinyauth.sh
flamegraph.svg
write.lock
README.md
CLAUDE.md
|