Integrations
Neon Database
Every app generated by Rytora BuildLabs gets its own Neon PostgreSQL database — serverless, auto-scaling, and managed entirely through Prisma ORM.
How it works
Rytora BuildLabs uses the Neon API to programmatically create a dedicated PostgreSQL database for each generated app. The connection string is injected into the app's environment variables, and Prisma handles all schema management, migrations, and type-safe queries.
Key features
Auto-provisioning
When Rytora BuildLabs creates your app, it automatically provisions a Neon PostgreSQL database using the Neon API. No manual setup needed.
Prisma ORM integration
Every generated app uses Prisma as its ORM. The AI generates type-safe models, relations, and migrations that work seamlessly with Neon.
Auto-pause
Preview databases automatically pause after inactivity and resume on the next connection. Cloud databases run always-on with no auto-pause.
Separate Preview & Production databases
Preview gets an auto-suspend database for cost optimization. Cloud gets an always-on database for production reliability. Each is isolated and independently managed.
Bring Your Own Key (BYOK)
Use Rytora BuildLabs managed Neon (default) or bring your own Neon account. Provide your API key to create databases in your own account, or connect to an existing Neon project by ID.
Auto-seed support
When the AI generates a seed.ts file, Rytora BuildLabs automatically configures prisma.seed in package.json and runs the seed during Cloud deploys.
Schema generation with Prisma
The AI analyzes your prompt to generate a complete Prisma schema with models, relations, enums, and indexes. It produces migration files ready to run against your Neon database.
Generated for every app
- prisma/schema.prisma with models and relations
- Type-safe Prisma Client generated automatically
- Migration files for schema versioning
- Seed scripts for initial data
- Connection pooling via Neon's serverless driver
Bring Your Own Key (BYOK)
By default, Rytora BuildLabs manages Neon databases automatically using the platform's Neon account. If you prefer to use your own Neon account, enable the Neon connector in Project Settings → Connectors and provide your API key.
Managed (default)
Rytora BuildLabs auto-provisions. No config needed. Free tier included.
BYOK — New project
Provide your Neon API key. Rytora BuildLabs creates databases in your account.
BYOK — Existing project
Provide API key + Project ID. Rytora BuildLabs connects to your existing database.
Neon connector fields
Neon API Key
Your Neon API key for BYOK. Leave empty for managed mode.
Preview DB — Project ID
Neon Project ID for preview environment. Leave empty for auto-provisioned.
Production DB — Project ID
Neon Project ID for Cloud/Vercel/Railway production. Leave empty for auto-provisioned.
Separate from platform database
Rytora BuildLabs uses its own PostgreSQL database for platform data. Neon databases are exclusively for your generated apps — complete isolation between platform and user data. Learn more about the architecture.