Codapult
ЦеныПлагиныБлогДокументацияДемо

SaaS-бойлерплейт для разработчиков

© 2026 Codapult. Все права защищены.

Сделано на Codapult

Проект

  • Цены
  • Плагины
  • Документация
  • Сравнение SaaS-шаблонов

О нас

  • Контакты

Правовая информация

  • Политика конфиденциальности
  • Условия использования
Все статьи

Getting Started

  • Introduction
  • Quick Start
  • Project Structure
  • License and Permitted Use

Configuration

  • Environment Variables
  • App Configuration

Authentication

  • Authentication
  • OAuth Providers
  • Two-Factor & Passwordless
  • Enterprise SSO (SAML)

Database

  • Database
  • Migrations

Teams

  • Teams & Organizations
  • Permissions & RBAC
  • SCIM Provisioning

Payments

  • Payments & Billing
  • Stripe Setup
  • LemonSqueezy Setup
  • Polar Setup
  • Payment Webhooks

Api

  • API Layer
  • tRPC
  • GraphQL

Ai

  • AI Features
  • Streaming Chat
  • RAG and Semantic Search
  • Quotas and Memory

Email

  • Email
  • Email Templates

Infrastructure

  • Infrastructure
  • Self-Hosting
  • File Storage
  • Docker
  • Background Jobs
  • Terraform & Pulumi
  • Kubernetes

Ui

  • UI & Theming

I18n

  • Internationalization

Content Management

  • Content Management

Admin

  • Admin Panel

Security

  • Security

Monitoring

  • Analytics & Monitoring

Modules

  • Module Architecture
  • Waitlist
  • Audit Log
  • White-Labeling
  • Workflow Automation
  • A/B Testing
  • Welcome Page
  • Referrals
  • GDPR Export and Deletion
  • Outgoing Webhooks

Plugins

  • Plugin System
  • AI Kit Plugin
  • CRM Plugin
  • Helpdesk Plugin
  • Email Marketing Plugin

Deployment

  • Deployment
  • Troubleshooting

Upgrading

  • Upgrading Codapult

Developer Tools

  • AI Agents & IDEs
  • MCP Server
  • Testing
Infrastructure

Kubernetes

Deploy Codapult to any Kubernetes cluster with the included Helm chart.

Codapult ships a Helm chart in infra/helm/codapult/. It deploys the standalone Next.js container, optional BullMQ worker, optional Redis, ingress, service account, secrets, and autoscaling.

Chart Structure

infra/helm/codapult/
├── Chart.yaml
├── values.yaml
└── templates/
    ├── deployment.yaml
    ├── worker.yaml
    ├── redis.yaml
    ├── service.yaml
    ├── ingress.yaml
    ├── hpa.yaml
    ├── secrets.yaml
    └── serviceaccount.yaml

Install

cp infra/helm/codapult/values.yaml my-values.yaml
helm install codapult ./infra/helm/codapult -f my-values.yaml

Upgrade:

helm upgrade codapult ./infra/helm/codapult -f my-values.yaml

Image

Build and push the standalone image first:

docker build -t ghcr.io/acme/codapult:2026-05-24 .
docker push ghcr.io/acme/codapult:2026-05-24

Set:

image:
  repository: ghcr.io/acme/codapult
  tag: '2026-05-24'

Secrets

Production should reference an existing Kubernetes Secret:

kubectl create secret generic codapult-secrets \
  --from-literal=TURSO_DATABASE_URL="libsql://..." \
  --from-literal=TURSO_AUTH_TOKEN="..." \
  --from-literal=BETTER_AUTH_SECRET="..." \
  --from-literal=STRIPE_SECRET_KEY="..." \
  --from-literal=STRIPE_WEBHOOK_SECRET="..."

Then:

existingSecret: codapult-secrets

For local or disposable environments, values.yaml also supports inline secrets, but avoid that in production git repositories.

Core Values

ValueDescription
replicaCountNumber of web pods when HPA is disabled
image.repository, image.tag, image.pullPolicyApp image
app.url, app.name, app.portPublic URL, display name, container port
envNon-secret environment variables
existingSecretExisting Secret used by envFrom
ingress.enabled, ingress.className, ingress.hosts, ingress.tlsHTTP ingress
resourcesWeb pod resource requests/limits
autoscalingHorizontalPodAutoscaler settings
worker.enabledDedicated BullMQ worker deployment
redis.enabled, redis.externalUrlIn-cluster or external Redis

Workers and Redis

Enable production jobs with a dedicated worker:

env:
  JOB_PROVIDER: bullmq
  CODAPULT_DISABLE_IN_PROCESS_JOBS: 'true'

worker:
  enabled: true
  replicaCount: 1

redis:
  enabled: true

The worker pod sets CODAPULT_WORKER_MODE=true and starts registered BullMQ handlers and cron schedules. Use an external Redis instead of in-cluster Redis when you need managed persistence:

redis:
  enabled: false
  externalUrl: redis://redis.example.com:6379

Ingress and TLS

The default chart assumes nginx ingress and cert-manager:

ingress:
  enabled: true
  className: nginx
  annotations:
    cert-manager.io/cluster-issuer: letsencrypt-prod
  hosts:
    - host: app.example.com
      paths:
        - path: /
          pathType: Prefix
  tls:
    - secretName: codapult-tls
      hosts:
        - app.example.com

Update annotations for your ingress controller if you use ALB, Traefik, Gateway API, or a managed platform ingress.

Terraform & PulumiUI & Theming