Volver al ranking

shuttle-hq/shuttle

Rustshuttle.dev

Build & ship backends without writing any infrastructure files.

rustframeworkwebweb-frameworkdeploymentpaasdevopsbaasrust-lang
Crecimiento de estrellas
Estrellas
6.9k
Forks
298
Crecimiento semanal
Issues
35
2k4k6k
ene 2023mar 2024may 2025jul 2026
Artefactoscrates.iocargo add shuttle
README


language docs crate-docs build status

crates discord Twitter Follow

open bounties rewarded bounties


Fastest Way to Build & Ship Rust Apps

Get resources and deploy your apps with a few lines of code.

Simple.   Easy.   Joyful.

Report Bug · Request a Feature · Join Our Discord · Follow us on X


⭐ If you find Shuttle interesting, consider starring this repo to help spread the word.

Features

  • One-line Resource Provisioning: Get a database or other resource by adding a single line of code to your main file. No config or yaml files required.
  • Rapid Development: It takes 2 minutes from project initialization to a deployed project. It takes seconds to provision a resource, and get it deployed to production.
  • First-class support for popular Rust frameworks: Axum, Actix Web, Rocket, and more
  • Security: Let us worry about the security & permissions while you focus on writing good code.


Quick Start

On Linux and macOS, you can use this install script, which will automatically install the correct target for your OS and distro:

curl -sSfL https://www.shuttle.dev/install | bash

On Windows, you can use this install script to do the same:

iwr "https://www.shuttle.dev/install-win" | iex

After installing, log in with:

shuttle login

To initialize your project, simply write:

shuttle init --template axum hello-world

And to deploy it, write:

cd hello-world
shuttle deploy

And... that's it!

Service Name:  hello-world
Deployment ID: 3d08ac34-ad63-41c1-836b-99afdc90af9f
Status:        running
Last Updated:  2022-04-01T08:32:34Z
URI:           https://hello-world.shuttleapp.rs

Feel free to build on top of the generated hello-world boilerplate or take a stab at one of our examples.

For the full documentation, visit our docs.

Quick Look

Below is a basic "Hello World" application written in Axum:

use axum::{routing::get, Router};

#[tokio::main]
async fn main() {
    let app = Router::new().route("/", get(hello_world));

    let listener = tokio::net::TcpListener::bind("127.0.0.1:3000")
        .await
        .unwrap();
    println!("listening on {}", listener.local_addr().unwrap());
    axum::serve(listener, app).await.unwrap();
}

async fn hello_world() -> &'static str {
    "Hello, world!"
}

In order to be able to deploy it with a single command, we update the snippet as follows:

use axum::{routing::get, Router};

async fn hello_world() -> &'static str {
    "Hello, world!"
}

#[shuttle_runtime::main]
async fn main() -> shuttle_axum::ShuttleAxum {
    let router = Router::new().route("/", get(hello_world));

    Ok(router.into())
}

Now, with just shuttle deploy, you can see your application live. But let's enhance it further by adding a shared Postgres database:

use axum::{routing::get, Router};

async fn hello_world() -> &'static str {
    "Hello, world!"
}

#[shuttle_runtime::main]
async fn main(
    #[shuttle_shared_db::Postgres] pool: sqlx::PgPool,
) -> shuttle_axum::ShuttleAxum {

    pool.execute(include_str!("../schema.sql"))
        .await
        .expect("failed to run migrations");

    let router = Router::new().route("/", get(hello_world));

    Ok(router.into())
}

Now, if we run shuttle deploy, we'll have an up and running project with a database inside & ready to use.

Repositories

Name Description
shuttle 🚀 (This repo) All library crates and the Shuttle CLI.
shuttle-examples 👨‍🏫 Officially maintained examples of projects that can be deployed on Shuttle.
shuttle-docs 📃 Documentation hosted on docs.shuttle.dev.
www 🌍 Our website shuttle.dev, including the blog and more.
deploy-action GitHub Action for continuous deployments.
awesome-shuttle 🌟 An awesome list of Shuttle-hosted projects and resources that users can add to.
shuttlings ⚔️ A collection of Rust code challenges. A great way to get started with using Rust and Shuttle.


Contributing to Shuttle

Contributing to Shuttle is highly encouraged! Even if you are not planning to submit any code, joining our Discord server and providing feedback helps us a lot!

Check out our contributing docs and find the appropriate repo above to contribute to. For development of this repo, check the development docs.

Algora Bounties 💰

To offload work from the engineering team on low-priority issues, we will sometimes add a cash bounty to issues. Sign up to the Algora Console to find open issues with bounties.

Contributors ✨

Thanks goes to these wonderful people:

Made with contrib.rocks.

Repositorios relacionados
farion1231/cc-switch

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

Rustcrates.ioMIT Licenseai-toolsclaude-code
ccswitch.io
119.8k8k
rustdesk/rustdesk

An open-source remote desktop application designed for self-hosting, as an alternative to TeamViewer.

Rustcrates.ioGNU Affero General Public License v3.0remote-controlremote-desktop
rustdesk.com
118.6k18.1k
rust-lang/rust

Empowering everyone to build reliable and efficient software.

Rustcrates.ioApache License 2.0rustcompiler
rust-lang.org
114.8k15.4k
tauri-apps/tauri

Build smaller, faster, and more secure desktop and mobile applications with a web frontend.

Rustcrates.ioApache License 2.0rustwebview
tauri.app
109.3k3.8k
denoland/deno

A modern runtime for JavaScript and TypeScript.

Rustcrates.ioMIT Licensedenotypescript
deno.com
107.8k6.2k
oven-sh/bun

Incredibly fast JavaScript runtime, bundler, test runner, and package manager – all in one

Rustcrates.ioOtherbunbundler
bun.com
95k4.9k
unionlabs/union

The trust-minimized, zero-knowledge bridging protocol, designed for censorship resistance, extremely high security, and usage in decentralized finance.

Rustcrates.ioApache License 2.0blockchaincosmos
union.build
73.9k3.9k
rtk-ai/rtk

CLI proxy that reduces LLM token consumption by 60-90% on common dev commands. Single Rust binary, zero dependencies

Rustcrates.ioApache License 2.0agentic-codingai-coding
rtk-ai.app
72.4k4.5k
toeverything/AFFiNE

There can be more than Notion and Miro. AFFiNE(pronounced [ə‘fain]) is a next-gen knowledge base that brings planning, sorting and creating all together. Privacy first, open-source, customizable and ready to use.

TypeScriptnpmOthereditorcrdt
affine.pro
70.7k5.1k
openinterpreter/openinterpreter

A coding agent for open models like Kimi K3

Rustcrates.ioApache License 2.0coding-agentdeepseek
openinterpreter.com
67.1k5.8k
BurntSushi/ripgrep

ripgrep recursively searches directories for a regex pattern while respecting your gitignore

Rustcrates.ioThe Unlicenseripgreprecursively-search
66.4k2.7k
alacritty/alacritty

A cross-platform, OpenGL terminal emulator.

Rustcrates.ioApache License 2.0terminal-emulatorsopengl
alacritty.org
65k3.5k