A fullstack implementation of the RealWorld project using Rust, axum, sqlx, and yew.
To get started, install Docker and cargo-make
on your local machine (Windows users may want to use WSL for ease of development), then clone/fork the repository. Once
you have the project
local to your machine, create an .env
file local to workspace with valid values (you can use the defaults as well).
cp .env.example .env
Next, create and start our Docker containers:
cargo make docker
Once the application containers have started, verify all integration tests pass:
cargo make integration
The above target will run the included Postman suite of tests designed by the authors of the RealWorld project. Once the tests have completed, verify all unit tests are passing as well:
cargo make test
Again, the target above will run all included unit tests found in the project. To run the frontend project using trunk:
cargo make web
This project is more or less a Rust playground for myself and others to learn Rust, axum, and sqlx. We utilize cargo workspaces to help encapsulate project-specific logic/domains, with a rough organization strategy as follows:
crates/conduit-bin
- API entry point, consisting of a singlemain.rs
file to drive startup and wire library dependencies togethercrates/conduit-web
- (in progress) web frontend project utilizing yewcrates/conduit-api
- web API project housing axum specific setup, endpoints, routing, request/response marshalling, etc.crates/conduit-core
- core logic and contract definitions between domains, services, and repositorycrates/conduit-domain
- a simple project to house PORS (plain old rust structs) used for API request and responses, services, etc.crates/conduit-infrastructure
- a project adapter containing implementations of the core business logics definitions from higher upintegrations
- contains the RealWorld Postman test scripts and collectioncypress
- contains the e2e tests used to test the frontend project (crates/conduit-web
)deploy
- contains all Docker Compose files used for building the project containers.husky
- contains husky git hooks
I use husky for pre-commit hooks and lint-staged to format staged files to keep committed code well formatted. While there are a few other options for including pre-commit hooks into a Rust project, and certainly those that are more appropriate for Rust projects, I wanted to leave open the opportunity of bringing on a TS-based frontend sometime in the future to have the true RealWorld fullstack experience. The pre-commit hooks will format, lint, and test all code so that each commit ensure that tests are passing and code does not contain any obvious errors.
To bypass the included hooks, simply pass a --no-verify
flag while committing code
git commit -m "feat(core): add some amazing unit tests" --no-verify
The project utilizes Docker containers for Postgres and Prometheus metrics, as well as containers for the API and frontend. For example, when starting the
application with cargo make docker
, navigating to localhost:9090
will bring you to the Prometheus metrics page.
From there, running integration tests with cargo make integration
to simulate traffic to the API allows one to observe
the
various
metrics that are recorded in the service layer: request count, request latency, and histograms of service request
intervals.
To start the API outside the Docker context, run:
cargo make dev # or cargo run
The dev
tasks takes on the postgres
task as a dependency, so your database container will start automatically.
If you're starting the application for the first time, it will attempt to seed a bit of data that is also used for testing.
There's a lot more unit tests to write...