A backend project built in Rust using Tokio
, Axum
, and SQLx
for high-performance, asynchronous web applications. This project offers a solid foundation for building scalable APIs with minimal latency.
- Tokio: Asynchronous runtime for handling high concurrency.
- Axum: Web framework for routing and request management.
- SQLx: Async ORM for easy database access with compile-time checked SQL.
- Asynchronous CRUD operations with database transactions.
- Scalable route and middleware setup.
- Database migrations for schema management.
- Clone the repository.
- Configure the database settings.
- Run migrations with
sqlx
. - Start the server with
cargo run
.