Managed Databases
LaunchVerse provides fully managed, highly available database provisioning directly from the dashboard. You do not need to configure external database providers or manage connection strings manually.
Supported Engines
LaunchVerse currently supports the instant provisioning of:
- PostgreSQL (with pgvector support)
- MySQL
- MongoDB
- Redis
- ClickHouse
Provisioning a Database
- Navigate to your project's Resources tab.
- Click Add Resource and select Database.
- Choose your desired database engine and version.
- Select the compute size (e.g., 1 vCPU / 2GB RAM).
- Click Provision.
The LaunchVerse Engine will instantly spin up a dedicated database container.
Automatic Environment Variables
When a database is provisioned and attached to a project, LaunchVerse automatically injects the secure connection strings into your application's environment variables.
For example, a PostgreSQL database will automatically expose:
DATABASE_URLPGHOSTPGUSERPGPASSWORD
Your application code can immediately read these variables using standard methods (e.g., process.env.DATABASE_URL in Node.js) without any manual copying and pasting of secrets.
Database Studio
For relational databases (PostgreSQL and MySQL), LaunchVerse includes a built-in Database Studio. This allows you to view tables, run SQL queries, and manage your schema directly from your browser without needing to connect an external tool like pgAdmin or DBeaver.