Usage & Enterprise Capabilities
Key Benefits
- Developer Productivity: A fast, keyboard-friendly interface that doesn't get in your way.
- Enterprise Features, Zero Cost: Get advanced agile tracking without the per-user fees.
- Data Sovereignty: Your software roadmaps and internal secrets stay on your servers.
- Modern Tech Stack: Built with Python, Node.js, and Postgres for reliability and speed.
- Community Driven: Rapidly evolving with a massive community of open-source contributors.
Production Architecture Overview
- Plane Web: The frontend application (Next.js).
- PostgreSQL: The primary database for project and issue data.
- Redis: Used for task queuing and session management.
- MinIO / S3: Used for persistent storage of attachments and images.
- Reverse Proxy: NGINX or Caddy to handle SSL/TLS and routing.
Implementation Blueprint
Implementation Blueprint
Prerequisites
sudo apt update && sudo apt upgrade -y
sudo apt install docker.io docker-compose -y
sudo systemctl enable docker
sudo systemctl start dockerDocker Compose Production Setup
version: '3.8'
services:
plane-api:
image: makeplane/plane-backend:latest
environment:
- DATABASE_URL=postgres://plane:password@plane-db:5432/plane
- REDIS_URL=redis://plane-redis:6379/1
depends_on:
- plane-db
- plane-redis
restart: always
plane-web:
image: makeplane/plane-frontend:latest
ports:
- "80:3000"
restart: always
plane-db:
image: postgres:15-alpine
environment:
- POSTGRES_USER=plane
- POSTGRES_PASSWORD=password
- POSTGRES_DB=plane
volumes:
- pg_data:/var/lib/postgresql/data
restart: always
plane-redis:
image: redis:7-alpine
restart: always
volumes:
pg_data:Kubernetes Production Deployment (Recommended)
# Deploy using Plane's official Kubernetes manifests or Helm
kubectl apply -f https://raw.githubusercontent.com/makeplane/plane/master/deploy/k8s/manifests.yaml- Horizontal Scaling: Scale your API and Web pods independently based on your team's usage patterns.
- Persistent Management: Use Kubernetes PersistentVolumeClaims for your Postgres data and S3 for all attachments.
- Automated Restarts: The cluster manager will automatically replace any unhealthy Plane pods.
Scaling Strategy
- Separate API & Workers: Run Plane's background workers on separate pods to ensure that heavy tasks don't impact the main API performance.
- Object Storage: Always use a dedicated S3-compatible provider for file attachments and product images.
- Database Tuning: Regularly optimize your PostgreSQL instance and monitor query performance on large boards.
- Global Delivery: Serve the Plane frontend through a CDN to ensure fast page loads for remote team members.
Backup & Safety
- Database Snapshots: Automate daily PostgreSQL backups and store them offsite securely.
- Volume Backups: Regularly backup the persistent volumes containing your attachments and configuration.
- HTTPS Everywhere: Always run Plane behind a secure reverse proxy to encrypt all project communication.
- Access Control: Keep your Plane instance behind an internal VPN or an authenticated zero-trust proxy.
Recommended Hosting for Plane
For systems like Plane, we recommend high-performance VPS hosting. Hostinger offers dedicated setups for open-source tools with one-click installer scripts and 24/7 priority support.
Get Started on HostingerExplore Alternative Tools Infrastructure
Kubernetes
Kubernetes is a production-grade, open-source platform for automating deployment, scaling, and operations of application containers.
Supabase
Supabase is the leading open-source alternative to Firebase. It provides a full backend-as-a-service (BaaS) powered by PostgreSQL, including authentication, real-time subscriptions, and storage.