Skip to content

Razd

The Modern Project Setup Tool

Razd

Quick Example

Get a project up and running in seconds:

bash
# Clone and set up a project in one command
razd up https://github.com/hello/world.git

# Or set up an existing local project
cd my-project
razd up

How It Works

Razd automates the common project setup workflow:

  1. Clone: Uses git to clone the repository (if URL provided)
  2. Install Tools: Detects .mise.toml and runs mise install
  3. Project Setup: Detects Taskfile.yml and runs task setup
  4. Ready: Your project is ready for development

Why Razd?

Instead of running multiple commands every time you set up a project:

bash
git clone https://github.com/hello/world.git
cd world
mise install
task setup

Just run:

bash
razd up https://github.com/hello/world.git

Perfect for:

  • Team onboarding: New developers get productive faster
  • CI/CD: Consistent environment setup in pipelines
  • Personal productivity: Eliminate repetitive setup tasks

Released under the MIT License.