Installation
2026-01-06
1. Install via CLI
Run the following command to download and install the binary:
curl --proto '=https' --tlsv1.2 -sSf https://manul-lang.org/install.sh | sh2. Configure Shell
Reload your shell configuration to update your path (ensure you use the config file matching your active shell, e.g., .zshrc or .bashrc):
source ~/.zshrc3. Verify Installation
Confirm that Manul was installed correctly by checking the version:
manul --version4. Quick Start
Create and deploy a basic “Hello World” project to ensure everything is working.
Initialize Project:
mkdir manul-testcd manul-testmkdir src
# Create a sample filecat << EOF > test.manulclass Product(var name: string)EOF
# Deploymanul deployTest Endpoint: Send a request to the local instance to create a new product:
curl -H "X-App-ID: {app-id}" \ -X POST http://localhost:8080/api/product \ --data-raw '{name: "Shoes"}'