A web service built with Rust and modern front-end technologies.
- Rust (latest stable)
- Node.js (v18+)
- npm or yarn
# Build the project
cargo build
# Run the server
cargo run --bin server
# Navigate to frontend directory
cd frontend
# Install dependencies
npm install
# Start development server
npm run dev
/src
- Rust backend code/frontend
- Frontend application/config
- Configuration files/tests
- Test files/docs
- Documentation
cargo test
# Build backend
cargo build --release
# Build frontend
cd frontend && npm run build