Deploy Guides
Learn how to host your application on Vertra Cloud with language and framework-specific guides. Each tutorial covers project structure, necessary configuration and the complete deployment process.Node.js
Node.js applications with or without framework.
Python
Python scripts, bots and APIs.
Express.js
REST APIs with Express.js.
Fastify
High-performance APIs with Fastify.
Next.js
React applications with SSR and SSG.
Go
APIs and services in Go.
Static Sites
HTML, CSS and pure JavaScript.
Discord Bots
Bots for Discord with discord.js or discord.py.
Common Structure
Regardless of the framework chosen, every deployment on Vertra Cloud follows the same structure:vertracloud.config File
The configuration file is optional but recommended. It must be at the project root:
| Field | Description | Required |
|---|---|---|
MAIN | Application’s main file | Yes |
START | Custom startup command | No |
SUBDOMAIN | Custom subdomain | No |
VERSION | Runtime version (recommended, latest) | No |
MEMORY | Memory in MB | No |
AUTORESTART | Auto-restart on crash | No |
Application Port
Web applications must listen on the port defined by thePORT environment variable. The platform automatically injects this variable into the container.
- Node.js
- Python
- Go