From 2aa56f9b3cf09ff019ae4dc9a3a2d1a9fe3efd18 Mon Sep 17 00:00:00 2001 From: Joshua Mo <102877324+joshua-mo-143@users.noreply.github.com> Date: Mon, 2 Dec 2024 23:02:00 +0000 Subject: [PATCH] refactor: update docs on deploying to Shuttle (#503) --- docs/shuttle.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/shuttle.md b/docs/shuttle.md index 02103b8..6987829 100644 --- a/docs/shuttle.md +++ b/docs/shuttle.md @@ -8,7 +8,7 @@ import CodeBlock from '@site/src/components/code_block'; Shuttle Logo -> [**Shuttle**](https://www.shuttle.rs) is a Rust-native cloud development platform that lets you deploy your Rust apps for free. +> [**Shuttle**](https://www.shuttle.dev) is a Rust-native cloud development platform that lets you deploy your Rust apps for free. Shuttle has out-of-the-box support for Actix Web. Follow these steps to host your web service on Shuttle: @@ -29,15 +29,15 @@ cargo install cargo-shuttle 4. Create your project on the Shuttle platform: ```sh -cargo shuttle project start +shuttle project start ``` 5. Deploy! 🚀 ```sh -cargo shuttle deploy +shuttle deploy ``` -You can run `cargo shuttle run` to test your application locally. +You can run `shuttle run` to test your application locally. Check out some complete Actix Web examples [here](https://github.com/shuttle-hq/shuttle-examples/tree/main/actix-web).