1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-12-18 06:06:36 +00:00

doc: rewrite advice

This commit is contained in:
ivegotasthma 2018-03-07 13:17:05 +01:00
parent c3ec7b3d94
commit e597da41ad
5 changed files with 6 additions and 6 deletions

View file

@ -19,7 +19,7 @@ diesel migration run
# if ubuntu : sudo apt-get install libsqlite3-dev
# if fedora : sudo dnf install libsqlite3x-devel
cd actix-web/examples/diesel
cargo run (or ``cargo watch -x run``)
cargo run (or see examples/catflap for rebuilding and redeploying on file change)
# Started http server: 127.0.0.1:8080
```
@ -40,4 +40,4 @@ sqlite> select * from users;
## Postgresql
You will also find another complete example of diesel+postgresql on [https://github.com/TechEmpower/FrameworkBenchmarks/tree/master/frameworks/Rust/actix](https://github.com/TechEmpower/FrameworkBenchmarks/tree/master/frameworks/Rust/actix)
You will also find another complete example of diesel+postgresql on [https://github.com/TechEmpower/FrameworkBenchmarks/tree/master/frameworks/Rust/actix](https://github.com/TechEmpower/FrameworkBenchmarks/tree/master/frameworks/Rust/actix)

View file

@ -6,7 +6,7 @@ Juniper integration for Actix web
```bash
cd actix-web/examples/juniper
cargo run (or ``cargo watch -x run``)
cargo run (or see examples/catflap for rebuilding and redeploying on file change)
# Started http server: 127.0.0.1:8080
```

View file

@ -8,7 +8,7 @@ Multipart's `Getting Started` guide for Actix web
```bash
cd actix-web/examples/multipart
cargo run (or ``cargo watch -x run``)
cargo run (or see examples/catflap for rebuilding and redeploying on file change)
# Started http server: 127.0.0.1:8080
```

View file

@ -8,7 +8,7 @@ Minimal example of using the template [tera](https://github.com/Keats/tera) that
```bash
cd actix-web/examples/template_tera
cargo run (or ``cargo watch -x run``)
cargo run (or see examples/catflap for rebuilding and redeploying on file change)
# Started http server: 127.0.0.1:8080
```

View file

@ -6,7 +6,7 @@
```bash
cd actix-web/examples/tls
cargo run (or ``cargo watch -x run``)
cargo run (or see examples/catflap for rebuilding and redeploying on file change)
# Started http server: 127.0.0.1:8443
```