Documentation Index
Fetch the complete documentation index at: https://docs.versori.com/llms.txt
Use this file to discover all available pages before exploring further.
This guide walks through a complete project lifecycle using the Versori CLI — from creation through deployment and monitoring.
Create and sync a project
Create a new project
versori projects create --name my-project
Pull project files locally
versori projects sync --project <project-id>
This creates a .versori file in the target directory so that subsequent commands can infer the project and context automatically.
Develop and deploy
Edit files locally
Make your changes to the project files in the synced directory.
Push changes
Save your local changes to the project without deploying: Deploy to an environment
versori projects deploy --environment production
Check logs
versori projects logs --environment production --since 1h
For more controlled releases, use versioned snapshots:
versori projects versions create --project <project-id> --name v1.0
versori projects versions deploy \
--project <project-id> \
--version-id <id> \
--environment production
Test with proxy
Send an HTTP request directly to a deployed project environment:
versori projects proxy \
--project <project-id> \
--environment production \
--path /my-endpoint \
--method POST