Skip to content

Commit c9c9d9b

Browse files
committed
add docker and gitignore
1 parent 991a04a commit c9c9d9b

2 files changed

Lines changed: 46 additions & 0 deletions

File tree

.dockerignore

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Build artifacts
2+
target/
3+
*.db
4+
*.db-wal
5+
*.db-shm
6+
7+
# IDE
8+
.idea/
9+
.vscode/
10+
*.swp
11+
*.swo
12+
13+
# Git
14+
.git/
15+
.gitignore
16+
17+
# Test files
18+
*.log
19+
test_*.sh
20+
run_*.sh
21+
22+
# Documentation (not needed in image)
23+
*.md
24+
!DEPLOY.md
25+
26+
# Local config
27+
.env
28+
.env.*
29+
30+
# OS files
31+
.DS_Store
32+
Thumbs.db

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Generated development files
2+
.env
3+
4+
# Rust build artifacts
5+
target/
6+
7+
# IDE
8+
.idea/
9+
.vscode/
10+
*.swp
11+
*~
12+
13+
# macOS
14+
.DS_Store

0 commit comments

Comments
 (0)