Skip to content

Commit 8c05967

Browse files
authored
Merge pull request #286 from syncable-dev/develop
Develop
2 parents 3e00823 + 60188f9 commit 8c05967

118 files changed

Lines changed: 26083 additions & 219 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.cargo/config.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
[build]
22
rustflags = ["-C", "target-cpu=native"]
33

4-
# On macOS, the default linker (ld64) is already quite fast
5-
# For Linux, you could use mold: rustflags = ["-C", "link-arg=-fuse-ld=mold"]
4+
# Note: mold linker doesn't support macOS. Use default ld64 (already fast on Mac)
65

76
[alias]
87
b = "build"

.dockerignore

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# =============================================================================
2+
# Docker Build Context Exclusions
3+
# =============================================================================
4+
5+
# Build artifacts
6+
target/
7+
*.rs.bk
8+
9+
# IDE and editor files
10+
.idea/
11+
.vscode/
12+
*.swp
13+
*.swo
14+
*~
15+
16+
# Git
17+
.git/
18+
.gitignore
19+
20+
# Documentation and planning
21+
.planning/
22+
*.md
23+
!README.md
24+
25+
# CI/CD
26+
.github/
27+
28+
# Test fixtures
29+
tests/test-*/
30+
31+
# Local configuration
32+
.env
33+
.env.*
34+
*.local
35+
36+
# Logs
37+
*.log
38+
39+
# OS files
40+
.DS_Store
41+
Thumbs.db

0 commit comments

Comments
 (0)