Skip to Content
Getting started

Getting started

Install the CLI, create a project, declare a document, and serve your first Orjanda application.

Install the CLI

Orjanda is distributed as a Go command. Install the latest CLI with the command below.

go install github.com/orjanda-framework/orjanda/cmd/orjanda@latest

Create a project

Initialize a new application from the command line. Replace myapp with the name you want to use.

orjanda init myapp cd myapp

Add a document

Create a submittable LeaveRequest document in the leave module.

orjanda new document LeaveRequest --module=leave --submittable

Serve locally

Start the development server from your project directory.

orjanda serve
Last updated on