Code for "Zero To Production In Rust", a book on API development using Rust.
Find a file
2021-07-05 08:58:44 +02:00
.github/workflows Use the latest version of sqlx-cli, 0.5.5. 2021-07-05 08:09:11 +02:00
migrations Chapter 04 (snapshot). 2020-12-05 17:03:39 +00:00
scripts Proactively verify if psql and sqlx are installed before moving forward with script execution. 2021-07-05 08:58:44 +02:00
src Update to use once_cell instead of lazy_static. 2021-05-01 15:11:11 +01:00
tests Update to use once_cell instead of lazy_static. 2021-05-01 15:11:11 +01:00
.env Chapter 04 (snapshot). 2020-12-05 17:03:39 +00:00
.gitignore Scaffolding 2020-08-23 11:34:29 +01:00
Cargo.lock Update to the latest lexical core version to avoid conflicts with the new BITS constants 2021-07-05 08:35:46 +02:00
Cargo.toml Update to use once_cell instead of lazy_static. 2021-05-01 15:11:11 +01:00
configuration.yaml Chapter 04 (snapshot). 2020-12-05 17:03:39 +00:00
README.md Update README. 2020-12-05 17:27:07 +00:00

Zero To Production / Code (Chapter 4)

Zero To Production In Rust is an opinionated introduction to backend development using Rust.

This repository serves as supplementary material for the book: it hosts snapshots of the codebase of our email newsletter project at end of each chapter.

This branch is a snapshot of the project at the end of Chapter 4.

Pre-requisite

You'll need to install:

Launch a (migrated) Postgres database via Docker:

./scripts/init_db.sh

How to build

Using cargo:

cargo build

How to test

Using cargo:

cargo test