Light proof reading. (#125)
This commit is contained in:
parent
fa36afbb6c
commit
a01b7a304e
|
@ -10,9 +10,9 @@ tags:
|
||||||
# How I Start: Nix
|
# How I Start: Nix
|
||||||
|
|
||||||
[Nix][nix] is a tool that helps people create reproducible builds. This means that
|
[Nix][nix] is a tool that helps people create reproducible builds. This means that
|
||||||
given the a known input, you can get the same output on other machines.Let's
|
given a known input, you can get the same output on other machines. Let's build
|
||||||
build and deploy a small Rust service with Nix. This will not require the Rust
|
and deploy a small Rust service with Nix. This will not require the Rust compiler
|
||||||
compiler to be installed with [rustup][rustup] or similar.
|
to be installed with [rustup][rustup] or similar.
|
||||||
|
|
||||||
[nix]: https://nixos.org/nix/
|
[nix]: https://nixos.org/nix/
|
||||||
[rustup]: https://rustup.rs
|
[rustup]: https://rustup.rs
|
||||||
|
@ -353,7 +353,7 @@ Then download/build Rocket with `cargo build`:
|
||||||
$ cargo build
|
$ cargo build
|
||||||
```
|
```
|
||||||
|
|
||||||
This will download all of the dependencies you need and precompile Rocket. This
|
This will download all of the dependencies you need and precompile Rocket, and it
|
||||||
will help speed up later builds.
|
will help speed up later builds.
|
||||||
|
|
||||||
### Write our "hello world" route
|
### Write our "hello world" route
|
||||||
|
|
Loading…
Reference in New Issue