Meta Pixel

Deploy & Host

Deploy & publish

Take your application from preview to production with a single click. Rytora BuildLabs deploys your application to Vercel, giving you a fully hosted, production-grade application with zero DevOps work.

One-click deploy

When your application is ready, click the Deploy button in the Rytora BuildLabs toolbar. The platform handles the entire pipeline: building your code, provisioning infrastructure, configuring environment variables, running database migrations, and issuing SSL certificates. You receive a live production URL within minutes.

Deployment targets

Frontend

Vercel

Your React + Vite frontend is deployed to Vercel with automatic builds, edge caching, and global CDN. Vercel provides instant rollbacks, preview deployments for branches, and analytics out of the box.

  • Automatic builds on every deploy
  • Global CDN with edge caching
  • Preview deployments for testing
  • Serverless functions support
  • Built-in analytics and web vitals
Backend

Supabase Hosting

Your backend services run on Supabase with managed PostgreSQL, authentication, storage, and realtime subscriptions. Supabase handles infrastructure, scaling, and monitoring with zero DevOps configuration.

  • Managed PostgreSQL database
  • Built-in authentication and authorization
  • File storage and CDN
  • Realtime subscriptions
  • Edge Functions for server-side logic

Environment variables

Manage environment variables for each deployment target from the Rytora BuildLabs project settings. Variables are encrypted at rest and injected at build time. Common variables like Supabase URLs, API keys, and auth secrets can be configured per environment: development, preview, and production.

Security note

Never expose secret keys in frontend environment variables. Only variables prefixed with NEXT_PUBLIC_ are available in the browser. All other variables remain server-side only.

CI/CD pipeline

Rytora BuildLabs runs a continuous integration pipeline on every deploy. The pipeline includes the following stages:

1

Build

Compiles TypeScript, bundles assets, and generates optimized production builds.

2

Lint

Runs ESLint and TypeScript type checking to catch errors before deployment.

3

Migrate

Applies pending Supabase migrations to the production database. Migrations are generated from schema changes made during development.

4

Deploy

Pushes the built artifacts to Vercel. The platform handles zero-downtime deployments automatically.

5

Verify

Runs a health check against the deployed endpoints to confirm the application is responding correctly.

Production checklist

Before deploying to production, make sure you have covered these essentials.

  • 1All environment variables are set for frontend and Supabase
  • 2Database migrations have been applied to the production database
  • 3Authentication secrets (JWT, OAuth) are configured
  • 4Supabase URL and anon key in the frontend point to the production project
  • 5CORS origins are set to allow your production domain
  • 6Error tracking and logging are enabled
  • 7Rate limiting is configured on public API endpoints
  • 8SSL certificates are active for all domains

Want to use your own domain?

See the custom domains guide to learn how to connect a domain and configure DNS.