mirror of
https://github.com/LukeMathWalker/zero-to-production.git
synced 2024-11-15 21:21:00 +00:00
Code for "Zero To Production In Rust", a book on API development using Rust.
3e553eaf60
* Add chapter 4 code. * Add logger middleware. * Add env_logger. * Instrumented. * Test logs. * Introduce instrument. * Refactor handler. * Use TracingLogger. * Update. * Fix linter error. |
||
---|---|---|
.github/workflows | ||
chapter03-0 | ||
chapter03-1 | ||
chapter04 | ||
.gitignore | ||
Cargo.lock | ||
Cargo.toml | ||
README.md |
Zero To Production / Code
This repository complements the Zero To Production book: it hosts snapshots of the codebase of our email newsletter project at end of each chapter.
It is structured as a cargo
workspace: running cargo build
will build the codebase for all chapters.
If you want to build/test/run the code for a specific chapter, just move into its folder! E.g.:
# Run tests for the first part of Chapter 3
cd chapter03-0
cargo test
Alternatively, from the top-level folder, you can specify the binary you are interested into:
# Run the application as it is at end of the first part of Chapter 3
cargo run --bin chapter03-0