Skip to content

Veltic Managed

Build the whole backendin one project

Veltic is a managed platform for PostgreSQL, Node.js applications and background workers. Start with a database, add applications, functions, storage and realtime channels — administered from one dashboard.

Stay productive and operate your stack without leaving the dashboard

acme-productioneu-centralhealthy
-- connections by role
select usename, count(*) as connections
from pg_stat_activity
group by usename order by connections desc;
3 rows6 ms
usenameconnections
velticControl18
velticApp9
ordersOwner4

Query any database in the project

Run statements against any database, keep a history per database, and grant read and write as separate permissions.

  • Statement history
  • Read and write scopes
  • No local client required

Use Veltic with Next.js

None of this is a Veltic-specific client library. It is the driver, the framework and the fetch call you already use, pointed at a database and a runtime we operate.

import { Pool } from 'pg';

const pool = new Pool({
  connectionString: process.env.DATABASE_URL,
  max: 5,
  ssl: { rejectUnauthorized: true }
});

export async function getProducts() {
  const { rows } = await pool.query(
    'select id, name, price from products order by name'
  );
  return rows;
}

Frequently asked questions

What is Veltic Managed?

A monthly plan for PostgreSQL, applications, functions, storage and realtime in the Veltic dashboard. After payment and activation you receive your account and a first project.

What does unlimited fair use mean?

The plan has no advertised per-feature quotas. Available server capacity, hard container limits and technical platform boundaries still apply. Unusual usage is reviewed internally.

Can I keep using my existing tools?

Yes. PostgreSQL remains PostgreSQL. Use direct connections, the HTTPS Data API or the CLI as appropriate. Next.js, NestJS and custom Node.js applications are supported.

Does Veltic provide end-user authentication?

No. Veltic authenticates platform accounts and API keys. Authentication for your application's own end users is something you implement, typically with row level security backing it in the database.

What happens if a payment fails?

You can still sign in and open billing. Platform mutations are blocked while a subscription is inactive and are restored after successful reactivation.

Is my data isolated from other customers?

Resources are scoped to a project, workloads run in rootless containers with dropped capabilities, and database roles are per database. Container isolation is not a dedicated virtual machine, and we will not describe it as one.

Build the whole backend in one project

One plan, one dashboard, one command line interface. PostgreSQL, applications, functions, storage and realtime.