- Created Cargo.toml with all required dependencies - Implemented health/ready endpoints - Added Docker configuration (production + development) - Configured docker-compose with resource limits - Set up MongoDB service with persistence - Verified build (cargo check passed) - Prepared monorepo structure for mobile/web/shared Next: Phase 2.2 (MongoDB connection and models)
24 lines
231 B
Text
24 lines
231 B
Text
# Rust
|
|
backend/target/
|
|
backend/Cargo.lock
|
|
|
|
# Node.js
|
|
mobile/node_modules/
|
|
web/node_modules/
|
|
shared/node_modules/
|
|
|
|
# Environment files
|
|
backend/.env
|
|
mobile/.env
|
|
web/.env
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|