#78
B+
Rank #96
Plane
An open-source project management tool positioned as a self-hostable alternative to Linear/Jira. Standout trait is its modern React frontend paired with a well-structured Django REST backend.
71.3
/ 100
β Full Stack
Django REST Framework backend with Postgres, Redis for caching/queues, Celery workers for async jobs, MinIO for file storage, and a Next.js/React frontend β a multi-service stack orchestrated via docker-compose.
π Scaling Analysis
The Django+Celery+Redis architecture scales horizontally in principle by adding web/worker replicas, but the multi-service footprint (5-6 stateful/stateless components) makes it meaningfully harder to operate at scale than single-binary alternatives.
π Running on Nexlayer
Needs multiple pods: web (Django), frontend (Next.js), worker (Celery), postgres.pod:5432, redis.pod:6379, and a MinIO pod for S3-compatible storage; each service's inter-pod URL should use <podName>.pod:<port>, not localhost.