Quickstart
2026-01-06
1. Install via CLI
Run the following command to download and install the binary:
curl -sSf https://manul-lang.org/install.sh | sh2. Update Your Path
Source the environment file to make the manul command immediately available in your current shell:
source ~/.manul/bin/env3. Verify Installation
Confirm that Manul was installed correctly by checking the version:
manul --version4. Quick Start
Create and deploy a simple project to ensure everything is working.
Initialize Project:
mkdir -p manul-quickstart/srccd manul-quickstart
# Create an application and select itmanul create-app quickstartmanul set-app quickstart
# Create a sample filecat << EOF > product.mnlclass Product(var name: string)EOF
# Deploymanul deployTest Endpoint: Send a request to the local instance to create a new product:
curl -X POST http://localhost:8080/api/quickstart/product --data-raw '{name: "Shoes"}'Retrieve the created product (replace <app-id> with the output from the previous request):
curl http://localhost:8080/api/quickstart/product/<app-id>