Code for "Zero To Production In Rust", a book on API development using Rust.
Find a file
2024-08-31 17:39:25 +02:00
.cargo Update linker configuration for macs 2023-09-13 09:54:47 +02:00
.github/workflows Fix 'without db' confusion 2024-08-31 17:39:25 +02:00
.sqlx Speed up other CI jobs by avoiding the usage of a live Postgres database 2024-08-30 16:04:52 +02:00
migrations Chapter 04 (snapshot). 2020-12-05 17:03:39 +00:00
scripts Fix 'without db' confusion 2024-08-31 17:39:25 +02:00
src Fix 'without db' confusion 2024-08-31 17:39:25 +02:00
tests Fix 'without db' confusion 2024-08-31 17:39:25 +02: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 Remove once_cell 2024-08-29 17:12:38 +02:00
Cargo.toml Remove once_cell 2024-08-29 17:12:38 +02:00
configuration.yaml Chapter 04 (snapshot). 2020-12-05 17:03:39 +00:00
README.md Update deps 2022-10-01 14:29:16 +01:00

Zero To Production In Rust

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 several snapshots of the codebase for our email newsletter project as it evolves throughout the book.

Chapter snapshots

The main branch shows the project at the end of the book.

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

Pre-requisites

You'll need to install:

There are also some OS-specific requirements.

Windows

cargo install -f cargo-binutils
rustup component add llvm-tools-preview

Linux

# Ubuntu 
sudo apt-get install lld clang
# Arch 
sudo pacman -S lld clang

MacOS

brew install michaeleisel/zld/zld

How to build

Launch a (migrated) Postgres database via Docker:

./scripts/init_db.sh

Launch cargo:

cargo build

How to test

Launch a (migrated) Postgres database via Docker:

./scripts/init_db.sh

Launch cargo:

cargo test