Code for "Zero To Production In Rust", a book on API development using Rust.
Go to file
Luca Palmieri 918af7a6c4
Fix Dockerfile (#14)
* Add chapter 5

* Basic deployment stuff

* Fix Dockerfile.

* Add an explicit connection timeout.

* Align port with configuration.

* Use debug for faster feedback loops.

* Add address configuration.

* Provision database.

* Use structured options.

* Add configuration

* Fix typo.

* Customise deserialization logic.

* Change to Require.

* Fix spec.

* Add a few more things to the dockerignore file.

* Update to match chapter.

* Add base configuration.

* Amend configuratiohn.

* Cache the copied files.

* Explicitly set the SQLX OFFLINE variable.

* Fix Dockerfile.

Co-authored-by: LukeMathWalker <rust@lpalmieri.com>
2020-11-01 23:27:34 +00:00
.github/workflows Chapter03, Part 1 (#2) 2020-08-25 22:19:53 +01:00
chapter03-0 Updated to the latest actix-web version. 2020-10-18 15:44:04 +01:00
chapter03-1 Updated to the latest actix-web version. 2020-10-18 15:44:04 +01:00
chapter04 Updated to the latest actix-web version. 2020-10-18 15:44:04 +01:00
chapter05 Fix Dockerfile (#14) 2020-11-01 23:27:34 +00:00
.gitignore Scaffolding 2020-08-23 11:34:29 +01:00
Cargo.lock Chapter 5 (#13) 2020-11-01 21:25:11 +00:00
Cargo.toml Chapter 5 (#13) 2020-11-01 21:25:11 +00:00
README.md Update README.md 2020-10-14 08:59:08 +01: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.

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