QuickScale is a composable Django framework for building client SaaS applications. Start with a stable core, add reusable modules, customize themes, and deploy fasterβwhile maintaining the flexibility to create commercial extensions and build a community ecosystem.
QuickScale is a Django project generator that creates production-ready SaaS applications with one command. Designed for solo developers and development agencies, it gives you:
- Production-ready foundations: Docker, PostgreSQL, testing, CI/CD, and security out-of-the-box
- One-command deployment: Deploy to Railway with
quickscale deploy railway - Full ownership: Generated projects are 100% yours to customizeβno vendor lock-in
- Standardized stack: Build multiple client projects faster with consistent best practices
π§ Future Vision: QuickScale will evolve to support reusable modules and themes. Today it's a personal toolkit; tomorrow it becomes a community platform when demand emerges. Read the full evolution strategy.
Start here for your needs:
- π New user? You're in the right place. This README shows you what QuickScale is and how to get started.
- π§ Need commands? See user_manual.md for all commands and workflows
- π Deploying to Railway? See railway.md for Railway deployment guide
- π Planning a feature? Check decisions.md for the authoritative MVP scope and technical rules
- ποΈ Timeline & tasks? See roadmap.md
- ποΈ Project structure? See scaffolding.md for complete directory layouts
- π― Why QuickScale? See quickscale.md for competitive positioning
Quick Reference:
- MVP = Phase 1 (Personal Toolkit)
- Post-MVP = Phase 2+ (Modules & Themes)
- Generated Project = Output of
quickscale init
See decisions.md - Glossary section for complete terminology and Single Source of Truth reference
- Solo Developer: Build client projects faster with production-ready foundations
- Development Agency: Standardize your tech stack across client engagements
- Commercial Extension Developer: Create and sell premium modules/themes
- Open Source Contributor: Extend the ecosystem with modules and themes
quickscale init myapp
- Generates the minimal Django starter described in the MVP Feature Matrix
- Ships with standalone
settings.pyby default; there is NO automatic settings inheritance. Advanced users who manually embedquickscale_corevia git subtree may opt-in to inherit fromquickscale_core.settings(see decisions.md). - Optional: Embed
quickscale_corevia git subtree after generation; follow the Personal Toolkit workflow for canonical commands and helper roadmap
- Add your custom Django apps and features
- Adopt optional inheritance or module extraction patterns only when you embed the core; the rules and best practices stay centralized in
DECISIONS.md - Build your unique client application
- Deploy to Railway with
quickscale deploy railway(or use standard Django deployment)
βΉοΈ QuickScale's MVP centers on the personal toolkit workflow. Extraction patterns, module packaging, and subtree helper command plans stay documented in docs/technical/decisions.md so this README can stay concise.
π Scope note: The MVP Feature Matrix is the single source of truth for what's in or out.
Running quickscale init myapp generates a production-ready Django project with:
- β Docker setup (development + production)
- β PostgreSQL configuration
- β Environment-based settings (dev/prod split)
- β Security best practices (SECRET_KEY, ALLOWED_HOSTS, etc.)
- β Testing infrastructure (pytest + factory_boy)
- β CI/CD pipeline (GitHub Actions)
- β Code quality hooks (ruff format + ruff check)
- β Poetry for dependency management
- β
One-Command Deployment: Deploy to Railway with
quickscale deploy railway- fully automated setup
See the complete project structure: scaffolding.md - Generated Project Output
The generated project is yours to own and modify - no vendor lock-in, just Django best practices.
β Faster than Cookiecutter - One command vs. 30+ interactive prompts β More flexible than SaaS Pegasus - Open source with full code ownership ($0 vs. $349+) β Simpler than building from scratch - Production-ready in 5 minutes vs. days of setup β Railway deployment automation - Competitors require manual platform configuration
QuickScale is a development accelerator, not a complete solution. You start with production-ready foundations and build your unique client application on top.
See competitive_analysis.md for detailed comparison with SaaS Pegasus and Cookiecutter.
# Install QuickScale globally
./scripts/install_global.sh
# Create your first project
quickscale init myapp
cd myapp
# Or choose a specific theme (v0.61.0+)
# quickscale init myapp --theme showcase_html # Default Showcase HTML theme
# quickscale init myapp --theme showcase_htmx # HTMX theme (coming in v0.67.0)
# quickscale init myapp --theme showcase_react # React theme (coming in v0.68.0)Choose your development workflow:
# Start all services (web + database)
quickscale up
# Run migrations
quickscale manage migrate
# Create superuser
quickscale manage createsuperuser
# View logs
quickscale logs -f web
# Open a shell in the container
quickscale shell
# Stop services
quickscale downVisit http://localhost:8000 - Your app is running in Docker with PostgreSQL!
# Install dependencies
poetry install
# Run migrations
poetry run python manage.py migrate
# Start development server
poetry run python manage.py runserverVisit http://localhost:8000 - Your app is running natively!
For complete command reference and workflows, see the user_manual.md.
- decisions.md - Technical specifications and implementation rules
- quickscale.md - Strategic vision and competitive positioning
- competitive_analysis.md - Comparison vs SaaS Pegasus and alternatives
- roadmap.md - Development roadmap and implementation plan
- user_manual.md - Commands and workflows
- contributing.md - Development workflow and coding standards