Starter kit for building Rust services at Aetheras. It scaffolds an HTTP API plus Temporal worker, wires in PostgreSQL, and ships a ready-to-run local stack via Docker Compose. Common tooling (Justfile tasks, formatting, linting) is preconfigured so you can start shipping features immediately.
- HTTP server and worker binaries sharing a core crate
- Temporal + UI, PostgreSQL, and Adminer for local development
- Dockerfile and
compose.yamlfor build/test stacks justcommands for build, run, worker, and dev stack orchestration
Install cargo-generate
cargo install cargo-generatecargo generate --git git@github.com:aetheras-io/rust-template.git --name my-serviceIf you prefer HTTPS instead of SSH, use a personal access token (with repo scope) and supply it in the URL:
cargo generate --git https://github.com/aetheras-io/rust-template.git --name my-service