Code for "Zero To Production In Rust", a book on API development using Rust.
Go to file
Patrick Barrett cc340b168e
use locked dependencies when installing sqlx-cli (#47)
This change is needed to workaround an incompatibility in the latest
release of a deep dependency that causes a conflict in bitvec, see:
https://github.com/launchbadge/sqlx/issues/1048
2021-02-15 09:18:48 +00:00
.github/workflows use locked dependencies when installing sqlx-cli (#47) 2021-02-15 09:18:48 +00:00
configuration Happy case test. 2021-01-16 23:01:08 +00:00
migrations Refactor structure to use one root branch per chapter. 2020-12-05 17:19:11 +00:00
scripts Refactor structure to use one root branch per chapter. 2020-12-05 17:19:11 +00:00
src Add address. 2021-02-14 16:41:45 +00:00
tests/api Extract helper method. 2021-02-14 17:07:31 +00:00
.dockerignore Refactor structure to use one root branch per chapter. 2020-12-05 17:19:11 +00:00
.env Refactor structure to use one root branch per chapter. 2020-12-05 17:19:11 +00:00
.gitignore Scaffolding 2020-08-23 11:34:29 +01:00
Cargo.lock Update to tokio 1. 2021-02-11 09:23:13 +00:00
Cargo.toml Update to tokio 1. 2021-02-11 09:23:13 +00:00
Dockerfile Use latest Rust version. 2021-02-12 09:25:00 +00:00
README.md Update to the latest chapter. 2021-02-14 19:36:20 +00:00
spec.yaml Update to the latest chapter. 2021-02-14 19:36:20 +00:00
sqlx-data.json Refactor structure to use one root branch per chapter. 2020-12-05 17:19:11 +00:00

Zero To Production / Code

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.

Chapter snapshots

The master branch (where you are right now!) shows the project at the end of the last published chapter (Chapter 7 Part 1, right now).

You can browse the project at end of previous chapters by switching to their dedicated branches:

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