CLI
The Orjanda CLI is the quickest route from an empty directory to a running application.
Command index
| Command | Invocation | Purpose |
|---|---|---|
| Install | go install github.com/orjanda-framework/orjanda/cmd/orjanda@latest | Install the latest Orjanda CLI |
| Initialize | orjanda init myapp | Create a new application named myapp |
| New document | orjanda new document LeaveRequest --module=leave --submittable | Generate a submittable LeaveRequest |
| Serve | orjanda serve | Run the application locally |
Typical sequence
For a new project, the commands usually follow this order:
go install github.com/orjanda-framework/orjanda/cmd/orjanda@latest
orjanda init myapp
cd myapp
orjanda new document LeaveRequest --module=leave --submittable
orjanda serveLast updated on