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@latestCreate a project
Initialize a new application from the command line. Replace myapp with the name you want to use.
orjanda init myapp
cd myappAdd a document
Create a submittable LeaveRequest document in the leave module.
orjanda new document LeaveRequest --module=leave --submittableServe locally
Start the development server from your project directory.
orjanda serveLast updated on