backend-rust
Installation
SKILL.md
Rust Backend Stack
π¨ FIRST: Project Protection Setup
MANDATORY before writing any code. Run this on every new project:
# 1. Create .gitignore (ALWAYS include these)
cat >> .gitignore << 'EOF'
# Build artifacts
target/
Cargo.lock
# IDE
.idea/
.vscode/
.DS_Store