A recent version of Rust
See the deploy repository for instructions on running the application
Since we are working with a dockerized application, some commands need to be run inside the container. We provided a Makefile
for these cases.
The testing commands will require the application to run locally, this requires
setting certain environment variables. To this end an example
.env
file has been provided.
make migrate # Run pending migrations
make migrate-full # Redo all migrations (!!deletes data!!)
make lint
make fmt
cargo test
cargo test --tests # Skip doctests
cargo test --test <target> # Only test <Target>
cargo test <test-function> -- --exact # Only run <test-function>
If you want the application logs to be printed while running the tests:
CI=true cargo tets -- --nocapture