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:1
Prepare the project
Organize files and configure the main file and startup command.
2
Configure (optional)
Create the
vertracloud.config file with desired settings.3
Upload
Send the code via ZIP, GitHub or VSCode extension.
4
Verify
Monitor logs and application status in the dashboard.
vertracloud.config File
The configuration file is optional but recommended. It must be at the project root:
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