Skip to content
1.5.2
Getting Started / 1.5.2

Installation

Install the Andurel CLI, create an application, and start its development server.

Requirements

You need:

  • Go 1.26 or newer
  • PostgreSQL
  • Linux or macOS on amd64 or arm64

Install Andurel

Install the latest stable CLI with Go:

1go install github.com/mbvlabs/andurel@latest
2andurel --version

For reproducible automation, install an explicit stable v1 tag instead of latest.

Create an application

Create a project, synchronize its tools, configure the environment, and migrate the database:

1andurel new orbit
2cd orbit
3andurel tool sync
4cp .env.example .env
5andurel database create
6andurel database migrate up
7andurel run

The development server is available at http://localhost:8080 with live reload for Go, Templ, and CSS.

Choose a frontend

The default project uses Templ and Datastar. Select an Inertia adapter when creating the project if you want a reactive frontend:

1andurel new orbit --inertia vue
2andurel new orbit --inertia react/pnpm
3andurel new orbit --inertia svelte

See Frontend Options for the available adapters and JavaScript runtimes.

Documentation

Start typing to search the documentation.