diff --git a/examples/diesel/README.md b/examples/diesel/README.md index 922ba1e3b..be6872dba 100644 --- a/examples/diesel/README.md +++ b/examples/diesel/README.md @@ -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) \ No newline at end of file +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) diff --git a/examples/juniper/README.md b/examples/juniper/README.md index 2ac0eac4e..906460b6f 100644 --- a/examples/juniper/README.md +++ b/examples/juniper/README.md @@ -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 ``` diff --git a/examples/multipart/README.md b/examples/multipart/README.md index 348d28687..57d086fa8 100644 --- a/examples/multipart/README.md +++ b/examples/multipart/README.md @@ -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 ``` diff --git a/examples/template_tera/README.md b/examples/template_tera/README.md index 35829599f..8e926bd4f 100644 --- a/examples/template_tera/README.md +++ b/examples/template_tera/README.md @@ -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 ``` diff --git a/examples/tls/README.md b/examples/tls/README.md index 1bc9ba3b7..b23edad01 100644 --- a/examples/tls/README.md +++ b/examples/tls/README.md @@ -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 ```