Code for "Zero To Production In Rust", a book on API development using Rust.
Find a file
2021-09-11 20:43:19 +02:00
.github/workflows Cache sqlx-cli in CI 2021-08-31 23:22:21 +02:00
migrations
scripts Proactively verify if psql and sqlx are installed before moving forward with script execution. 2021-07-05 08:55:57 +02:00
src Update to actix-web 4.0.0-beta.8 2021-07-11 14:16:14 +01:00
tests
.env
.gitignore
Cargo.lock Update to latest actix-web. 2021-09-11 20:43:19 +02:00
Cargo.toml Update to latest actix-web. 2021-09-11 20:43:19 +02:00
configuration.yaml
README.md

Zero To Production / Code (Chapter 3, Part 1)

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 3, Part 1.

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