Quick start 
Learn how to run an hello world app in a few minutes.
Docker Compose 
Install Docker Compose.
Ensure it is running on a new terminal:
bash
docker compose versionV executable 
Create a file "docker-compose.yml" and paste this content:
yml
services:
  v:
    image: khalyomede/vlang:latest-alpine
    tty: true
    entrypoint: v
    working_dir: /home/v
    volumes:
      - .:/home/v
    ports:
      - 80:80Ensure V is runnable:
bash
docker compose run --rm v --versionInitialize your project 
Run docker compose run --rm v init and follow the instructions.
V package installation 
Package manager 
coming soon with 0.1.0.
Manual installation 
- Go to https://github.com/khalyomede/mantis
- On the green button "Code", click on "Download zip"
- On your root folder, create the folder "khalyomede"
- On the folder "khalyomede", create the folder "mantis"
- Unzip your folder content into "mantis"
Run this script in your root folder if you want to automatize this steps.
bash
#!/bin/bash
# Check for required commands
for cmd in curl unzip; do
  if ! command -v $cmd &> /dev/null; then
    echo "Error: $cmd is required but not installed"
    exit 1
  fi
done
# Create the directory structure if it doesn't exist
mkdir -p khalyomede/mantis
# Download the zip file from GitHub (using -L to follow redirects)
curl -L https://github.com/khalyomede/mantis/archive/master.zip -o mantis.zip
# Unzip the content
unzip mantis.zip
# Move the contents from the created directory to our target directory
mv mantis-master/* khalyomede/mantis/
# Clean up temporary files and empty directory
rm -rf mantis.zip mantis-master
echo "Mantis has been installed successfully in khalyomede/mantis/"You should end up with the following folder tree:
your-folder
├── khalyomede
│   └── mantis
│       ├── _docs
│       ├── console
│       ├── css
│       ├── database
│       └── ...
├── docker-compose.yml
├── main.v
└── v.modCreate the web server 
In a file called main.v at the root, add this content:
v
module main
import khalyomede.mantis.http { create_app, App, Response }
import khalyomede.mantis.http.route
fn main() {
  app := create_app(
    routes: [
      route.get(path: "/", callback: fn (app App) !Response {
        return app.response.html(content: "hello world")
      })
    ]
  )
  app.serve() or { panic(err) }
}Run the server 
Run this command:
bash
docker compose run --rm --service-ports v watch run main.vYour app is running at http://localhost or http://127.0.0.1