Crates.io | roadster |
lib.rs | roadster |
version | 0.8.1 |
created_at | 2024-05-05 22:21:52.108885+00 |
updated_at | 2025-08-05 02:46:17.824559+00 |
description | A "Batteries Included" web framework for rust designed to get you moving fast. |
homepage | |
repository | https://github.com/roadster-rs/roadster |
max_upload_size | |
id | 1230583 |
size | 6,513,138 |
A "Batteries Included" web framework for rust designed to get you moving fast 🏎️. Inspired by other fully-featured frameworks such as Rails, Django, Laravel, and Loco.
http
feature) and gRPC APIs
via Tonic (with the grpc
feature).open-api
feature).App#services
method.#![forbid(unsafe_code)]
to ensure all code in Roadster is 100% safe rust.cli
feature)jwt-ietf
and/or jwt-openid
features). Also provides a general
JWT extractor for Axum that simply puts all claims into a map (available with the jwt
feature)db-sea-orm
feature)db-diesel-*
collection of features, depending on what's needed)worker-pg
or worker-sidekiq
features,
respectively.email-smtp
feature)
or Sendgrid's Mail Send API (requires the
email-sendgrid
feature)otel
feature).user
(requires the db-sea-orm
feature)updated_at
, when updating DB rows (Postgres only currently) (
requires the db-sea-orm
feature)A full list of features and their documentation can also be found in the Roadster book.
Below are some example commands for running local instances of external dependencies, such as Postgres, Redis, and SMTP servers.
# Replace `example_dev` with your app name, e.g., `myapp_dev`
docker run -d -p 5432:5432 -e POSTGRES_USER=roadster -e POSTGRES_DB=example_dev -e POSTGRES_PASSWORD=roadster postgres:15.3-alpine
docker run -d -p 6379:6379 redis:7.2-alpine
docker run -d -p 8025:8025 -p 1025:1025 axllent/mailpit
docker run -d -p 1080:80 -p 1025:25 rnwood/smtp4dev
docker run -d -p 1080:1080 -p 1025:1025 maildev/maildev
# Using one of our examples for now
git clone https://github.com/roadster-rs/roadster.git
cd roadster/examples/app-builder
# Either set it as an environment variable
export ROADSTER__ENVIRONMENT=development
# Or add it to a `.env` file
echo ROADSTER__ENVIRONMENT=development >> .env
cargo run
Navigate to http://localhost:3000/api/_docs to explore the app's OpenAPI playground
Currently, Roadster is focused on back-end API development with Rust. We leave it to the consumer to decide how they prefer to add a front-end, e.g., using an established JS/TS framework (React / Next / Vue / Svelte / Solid / etc) or using a Rust front-end framework (Leptos / Yew / Perseus / Sycamore / etc). That said, we do have some examples of how to use Roadster with some these frameworks.
Framework | Example |
---|---|
Leptos | leptos-ssr |
Roadster allows reporting traces and metrics using the tracing
and
opentelemetry-rust integrations. Enable the otel
and/or
otel-grpc
features and provide the URL of your OTLP exporter in order to report the OTEL trace/metric data to your
telemetry provider (e.g., Grafana, SigNoz, New Relic, Datadog, etc).
Roadster provides built-in support for running async workers using either Postgres (via pgmq) or Redis/Sidekiq (via rusty-sidekiq) as the backing store. See the Background jobs chapter of the book for more details.
We provide a sample repo to run the sidekiq dashboard locally in a standalone docker container.
git clone https://github.com/roadster-rs/standalone_sidekiq_dashboard.git
cd standalone_sidekiq_dashboard
docker build -t standalone-sidekiq .
# Linux docker commands
# Development
docker run -d --network=host standalone-sidekiq
# Test
docker run -d --network=host -e REDIS_URL='redis://localhost:6380' standalone-sidekiq
# Mac docker commands -- todo: see if there's a command that will work on both mac and linux
# Development
docker run -d -p 9292:9292 -e REDIS_URL=redis://host.docker.internal:6379 standalone-sidekiq
# Test
docker run -d -p 9292:9292 -e REDIS_URL=redis://host.docker.internal:6380 standalone-sidekiq
You can also inspect the Redis DB directly using RedisInsight.
# Linux docker commands
docker run -d --name redisinsight --network=host -p 5540:5540 redis/redisinsight:latest
# Mac docker commands -- todo: see if there's a command that will work on both mac and linux
# Use `host.docker.internal` as the host domain in redis insight (instead of `127.0.0.1`)
docker run -d --name redisinsight -p 5540:5540 redis/redisinsight:latest
The Roadster book provides more details on how to use all of Roadster's features.
We also provide several examples for how to configure and use Roadster's features. These can be found the examples directory of this repository.
If you have a question not answered in the book or the examples, please open a GitHub Discussion and we'll be happy to help.