quickscale 0.71.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,220 @@
1
+ Metadata-Version: 2.1
2
+ Name: quickscale
3
+ Version: 0.71.0
4
+ Summary: Meta-package that installs quickscale-core and quickscale-cli together
5
+ Home-page: https://github.com/Experto-AI/quickscale
6
+ License: Apache-2.0
7
+ Keywords: django,cli,scaffolding,project-generator
8
+ Author: Experto AI
9
+ Author-email: victor@experto.ai
10
+ Requires-Python: >=3.10,<4.0
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Requires-Dist: quickscale-cli (>=0.71.0,<0.72.0)
17
+ Requires-Dist: quickscale-core (>=0.71.0,<0.72.0)
18
+ Project-URL: Documentation, https://github.com/Experto-AI/quickscale/tree/main/docs
19
+ Project-URL: Repository, https://github.com/Experto-AI/quickscale
20
+ Description-Content-Type: text/markdown
21
+
22
+ # πŸš€ QuickScale
23
+
24
+ <!--
25
+ README.md - User-Focused Introduction
26
+
27
+ PURPOSE: This file serves as the first contact point for users, developers, and evaluators visiting the QuickScale project.
28
+
29
+ CONTENT GUIDELINES:
30
+ - Keep content user-facing and accessible to newcomers
31
+ - Focus on "what" and "how to get started" rather than "why" or technical details
32
+ - Include quick examples and development workflows
33
+ - Avoid deep architectural explanations (those belong in DECISIONS.md)
34
+ - Avoid competitive analysis or strategic context (those belong in QUICKSCALE.md)
35
+ - Maximum length: ~200 lines to ensure quick readability
36
+ - Link to other documents for detailed information
37
+
38
+ TARGET AUDIENCE: New users, potential adopters, GitHub visitors, developers evaluating QuickScale
39
+ -->
40
+
41
+ ---
42
+
43
+ ## QuickScale: Compose your Django SaaS.
44
+
45
+ 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.
46
+
47
+ ---
48
+
49
+ ## What is QuickScale?
50
+
51
+ 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:
52
+
53
+ - **Production-ready foundations**: Docker, PostgreSQL, testing, CI/CD, and security out-of-the-box
54
+ - **One-command deployment**: Deploy to Railway with `quickscale deploy railway`
55
+ - **Full ownership**: Generated projects are 100% yours to customizeβ€”no vendor lock-in
56
+ - **Standardized stack**: Build multiple client projects faster with consistent best practices
57
+
58
+ 🧭 **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](./docs/overview/quickscale.md#evolution-strategy-personal-toolkit-first).
59
+
60
+ ## Documentation Guide
61
+
62
+ **Start here for your needs:**
63
+ - πŸ“– **New user?** You're in the right place. This README shows you what QuickScale is and how to get started.
64
+ - πŸ”§ **Need commands?** See [user_manual.md](./docs/technical/user_manual.md) for all commands and workflows
65
+ - πŸš€ **Deploying to Railway?** See [railway.md](./docs/deployment/railway.md) for Railway deployment guide
66
+ - πŸ“‹ **Planning a feature?** Check [decisions.md](./docs/technical/decisions.md) for the authoritative MVP scope and technical rules
67
+ - πŸ—“οΈ **Timeline & tasks?** See [roadmap.md](./docs/technical/roadmap.md)
68
+ - πŸ—οΈ **Project structure?** See [scaffolding.md](./docs/technical/scaffolding.md) for complete directory layouts
69
+ - 🎯 **Why QuickScale?** See [quickscale.md](./docs/overview/quickscale.md) for competitive positioning
70
+
71
+ **Quick Reference:**
72
+ - **MVP** = Phase 1 (Personal Toolkit)
73
+ - **Post-MVP** = Phase 2+ (Modules & Themes)
74
+ - **Generated Project** = Output of `quickscale init`
75
+
76
+ See [decisions.md - Glossary section](./docs/technical/decisions.md#document-responsibilities-short) for complete terminology and Single Source of Truth reference
77
+
78
+
79
+ ### Primary Use Cases (MVP):
80
+ - **Solo Developer**: Build client projects faster with production-ready foundations
81
+ - **Development Agency**: Standardize your tech stack across client engagements
82
+
83
+ ### Future Use Cases (Post-MVP):
84
+ - **Commercial Extension Developer**: Create and sell premium modules/themes
85
+ - **Open Source Contributor**: Extend the ecosystem with modules and themes
86
+
87
+ ### Development Flow (MVP)
88
+ 1. `quickscale init myapp`
89
+ - Generates the minimal Django starter described in the MVP Feature Matrix
90
+ - Ships with standalone `settings.py` by default; there is NO automatic settings inheritance. Advanced users who manually embed `quickscale_core` via git subtree may opt-in to inherit from `quickscale_core.settings` (see [decisions.md](./docs/technical/decisions.md#mvp-feature-matrix-authoritative)).
91
+ - **Optional**: Embed `quickscale_core` via git subtree after generation; follow the [Personal Toolkit workflow](./docs/technical/decisions.md#integration-note-personal-toolkit-git-subtree) for canonical commands and helper roadmap
92
+ 2. Add your custom Django apps and features
93
+ 3. Adopt optional inheritance or module extraction patterns only when you embed the core; the rules and best practices stay centralized in `DECISIONS.md`
94
+ 4. Build your unique client application
95
+ 5. Deploy to Railway with `quickscale deploy railway` (or use standard Django deployment)
96
+
97
+ ℹ️ 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.
98
+
99
+ πŸ”Ž **Scope note**: The [MVP Feature Matrix](./docs/technical/decisions.md#mvp-feature-matrix-authoritative) is the single source of truth for what's in or out.
100
+
101
+ ### What You Get
102
+
103
+ Running `quickscale init myapp` generates a **production-ready Django project** with:
104
+
105
+ - βœ… **Docker** setup (development + production)
106
+ - βœ… **PostgreSQL** configuration
107
+ - βœ… **Environment-based** settings (dev/prod split)
108
+ - βœ… **Security** best practices (SECRET_KEY, ALLOWED_HOSTS, etc.)
109
+ - βœ… **Testing** infrastructure (pytest + factory_boy)
110
+ - βœ… **CI/CD** pipeline (GitHub Actions)
111
+ - βœ… **Code quality** hooks (ruff format + ruff check)
112
+ - βœ… **Poetry** for dependency management
113
+ - βœ… **One-Command Deployment**: Deploy to Railway with `quickscale deploy railway` - fully automated setup
114
+
115
+ **See the complete project structure:** [scaffolding.md - Generated Project Output](./docs/technical/scaffolding.md#5-generated-project-output)
116
+
117
+ The generated project is **yours to own and modify** - no vendor lock-in, just Django best practices.
118
+
119
+ ## Why QuickScale vs. Alternatives?
120
+
121
+ βœ… **Faster than Cookiecutter** - One command vs. 30+ interactive prompts
122
+ βœ… **More flexible than SaaS Pegasus** - Open source with full code ownership ($0 vs. $349+)
123
+ βœ… **Simpler than building from scratch** - Production-ready in 5 minutes vs. days of setup
124
+ βœ… **Railway deployment automation** - Competitors require manual platform configuration
125
+
126
+ **QuickScale is a development accelerator**, not a complete solution. You start with production-ready foundations and build your unique client application on top.
127
+
128
+ See [competitive_analysis.md](./docs/overview/competitive_analysis.md) for detailed comparison with SaaS Pegasus and Cookiecutter.
129
+
130
+ ---
131
+
132
+
133
+ ## Quick Start
134
+
135
+ ### Option A: Interactive Plan/Apply Workflow (Recommended)
136
+
137
+ ```bash
138
+ # Install QuickScale globally
139
+ ./scripts/install_global.sh
140
+
141
+ # Create a configuration interactively
142
+ quickscale plan myapp
143
+ # β†’ Select theme, modules, Docker options
144
+ # β†’ Generates quickscale.yml
145
+
146
+ # Execute the configuration
147
+ quickscale apply quickscale.yml
148
+ cd myapp
149
+ ```
150
+
151
+ ### Option B: Direct Init (Legacy)
152
+
153
+ ```bash
154
+ # Install QuickScale globally
155
+ ./scripts/install_global.sh
156
+
157
+ # Create your first project directly
158
+ quickscale init myapp
159
+ cd myapp
160
+
161
+ # Or choose a specific theme (v0.61.0+)
162
+ # quickscale init myapp --theme showcase_html # Default Showcase HTML theme
163
+ # quickscale init myapp --theme showcase_htmx # HTMX theme (coming in v0.70.0)
164
+ # quickscale init myapp --theme showcase_react # React theme (coming in v0.71.0)
165
+ ```
166
+
167
+ > **Note**: The `init` and `embed` commands are deprecated and will be removed in v0.70.0. Use `plan` + `apply` instead.
168
+
169
+ **Choose your development workflow:**
170
+
171
+ ### Option 1: Docker (Recommended for production parity)
172
+
173
+ ```bash
174
+ # Start all services (web + database)
175
+ quickscale up
176
+
177
+ # Run migrations
178
+ quickscale manage migrate
179
+
180
+ # Create superuser
181
+ quickscale manage createsuperuser
182
+
183
+ # View logs
184
+ quickscale logs -f web
185
+
186
+ # Open a shell in the container
187
+ quickscale shell
188
+
189
+ # Stop services
190
+ quickscale down
191
+ ```
192
+
193
+ **Visit http://localhost:8000** - Your app is running in Docker with PostgreSQL!
194
+
195
+ ### Option 2: Native Poetry (Simpler for quick testing)
196
+
197
+ ```bash
198
+ # Install dependencies
199
+ poetry install
200
+
201
+ # Run migrations
202
+ poetry run python manage.py migrate
203
+
204
+ # Start development server
205
+ poetry run python manage.py runserver
206
+ ```
207
+
208
+ **Visit http://localhost:8000** - Your app is running natively!
209
+
210
+ **For complete command reference and workflows**, see the [user_manual.md](./docs/technical/user_manual.md).
211
+
212
+ ## Learn More
213
+
214
+ - **[decisions.md](./docs/technical/decisions.md)** - Technical specifications and implementation rules
215
+ - **[quickscale.md](./docs/overview/quickscale.md)** - Strategic vision and competitive positioning
216
+ - **[competitive_analysis.md](./docs/overview/competitive_analysis.md)** - Comparison vs SaaS Pegasus and alternatives
217
+ - **[roadmap.md](./docs/technical/roadmap.md)** - Development roadmap and implementation plan
218
+ - **[user_manual.md](./docs/technical/user_manual.md)** - Commands and workflows
219
+ - **[contributing.md](./docs/contrib/contributing.md)** - Development workflow and coding standards
220
+
@@ -0,0 +1,198 @@
1
+ # πŸš€ QuickScale
2
+
3
+ <!--
4
+ README.md - User-Focused Introduction
5
+
6
+ PURPOSE: This file serves as the first contact point for users, developers, and evaluators visiting the QuickScale project.
7
+
8
+ CONTENT GUIDELINES:
9
+ - Keep content user-facing and accessible to newcomers
10
+ - Focus on "what" and "how to get started" rather than "why" or technical details
11
+ - Include quick examples and development workflows
12
+ - Avoid deep architectural explanations (those belong in DECISIONS.md)
13
+ - Avoid competitive analysis or strategic context (those belong in QUICKSCALE.md)
14
+ - Maximum length: ~200 lines to ensure quick readability
15
+ - Link to other documents for detailed information
16
+
17
+ TARGET AUDIENCE: New users, potential adopters, GitHub visitors, developers evaluating QuickScale
18
+ -->
19
+
20
+ ---
21
+
22
+ ## QuickScale: Compose your Django SaaS.
23
+
24
+ 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.
25
+
26
+ ---
27
+
28
+ ## What is QuickScale?
29
+
30
+ 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:
31
+
32
+ - **Production-ready foundations**: Docker, PostgreSQL, testing, CI/CD, and security out-of-the-box
33
+ - **One-command deployment**: Deploy to Railway with `quickscale deploy railway`
34
+ - **Full ownership**: Generated projects are 100% yours to customizeβ€”no vendor lock-in
35
+ - **Standardized stack**: Build multiple client projects faster with consistent best practices
36
+
37
+ 🧭 **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](./docs/overview/quickscale.md#evolution-strategy-personal-toolkit-first).
38
+
39
+ ## Documentation Guide
40
+
41
+ **Start here for your needs:**
42
+ - πŸ“– **New user?** You're in the right place. This README shows you what QuickScale is and how to get started.
43
+ - πŸ”§ **Need commands?** See [user_manual.md](./docs/technical/user_manual.md) for all commands and workflows
44
+ - πŸš€ **Deploying to Railway?** See [railway.md](./docs/deployment/railway.md) for Railway deployment guide
45
+ - πŸ“‹ **Planning a feature?** Check [decisions.md](./docs/technical/decisions.md) for the authoritative MVP scope and technical rules
46
+ - πŸ—“οΈ **Timeline & tasks?** See [roadmap.md](./docs/technical/roadmap.md)
47
+ - πŸ—οΈ **Project structure?** See [scaffolding.md](./docs/technical/scaffolding.md) for complete directory layouts
48
+ - 🎯 **Why QuickScale?** See [quickscale.md](./docs/overview/quickscale.md) for competitive positioning
49
+
50
+ **Quick Reference:**
51
+ - **MVP** = Phase 1 (Personal Toolkit)
52
+ - **Post-MVP** = Phase 2+ (Modules & Themes)
53
+ - **Generated Project** = Output of `quickscale init`
54
+
55
+ See [decisions.md - Glossary section](./docs/technical/decisions.md#document-responsibilities-short) for complete terminology and Single Source of Truth reference
56
+
57
+
58
+ ### Primary Use Cases (MVP):
59
+ - **Solo Developer**: Build client projects faster with production-ready foundations
60
+ - **Development Agency**: Standardize your tech stack across client engagements
61
+
62
+ ### Future Use Cases (Post-MVP):
63
+ - **Commercial Extension Developer**: Create and sell premium modules/themes
64
+ - **Open Source Contributor**: Extend the ecosystem with modules and themes
65
+
66
+ ### Development Flow (MVP)
67
+ 1. `quickscale init myapp`
68
+ - Generates the minimal Django starter described in the MVP Feature Matrix
69
+ - Ships with standalone `settings.py` by default; there is NO automatic settings inheritance. Advanced users who manually embed `quickscale_core` via git subtree may opt-in to inherit from `quickscale_core.settings` (see [decisions.md](./docs/technical/decisions.md#mvp-feature-matrix-authoritative)).
70
+ - **Optional**: Embed `quickscale_core` via git subtree after generation; follow the [Personal Toolkit workflow](./docs/technical/decisions.md#integration-note-personal-toolkit-git-subtree) for canonical commands and helper roadmap
71
+ 2. Add your custom Django apps and features
72
+ 3. Adopt optional inheritance or module extraction patterns only when you embed the core; the rules and best practices stay centralized in `DECISIONS.md`
73
+ 4. Build your unique client application
74
+ 5. Deploy to Railway with `quickscale deploy railway` (or use standard Django deployment)
75
+
76
+ ℹ️ 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.
77
+
78
+ πŸ”Ž **Scope note**: The [MVP Feature Matrix](./docs/technical/decisions.md#mvp-feature-matrix-authoritative) is the single source of truth for what's in or out.
79
+
80
+ ### What You Get
81
+
82
+ Running `quickscale init myapp` generates a **production-ready Django project** with:
83
+
84
+ - βœ… **Docker** setup (development + production)
85
+ - βœ… **PostgreSQL** configuration
86
+ - βœ… **Environment-based** settings (dev/prod split)
87
+ - βœ… **Security** best practices (SECRET_KEY, ALLOWED_HOSTS, etc.)
88
+ - βœ… **Testing** infrastructure (pytest + factory_boy)
89
+ - βœ… **CI/CD** pipeline (GitHub Actions)
90
+ - βœ… **Code quality** hooks (ruff format + ruff check)
91
+ - βœ… **Poetry** for dependency management
92
+ - βœ… **One-Command Deployment**: Deploy to Railway with `quickscale deploy railway` - fully automated setup
93
+
94
+ **See the complete project structure:** [scaffolding.md - Generated Project Output](./docs/technical/scaffolding.md#5-generated-project-output)
95
+
96
+ The generated project is **yours to own and modify** - no vendor lock-in, just Django best practices.
97
+
98
+ ## Why QuickScale vs. Alternatives?
99
+
100
+ βœ… **Faster than Cookiecutter** - One command vs. 30+ interactive prompts
101
+ βœ… **More flexible than SaaS Pegasus** - Open source with full code ownership ($0 vs. $349+)
102
+ βœ… **Simpler than building from scratch** - Production-ready in 5 minutes vs. days of setup
103
+ βœ… **Railway deployment automation** - Competitors require manual platform configuration
104
+
105
+ **QuickScale is a development accelerator**, not a complete solution. You start with production-ready foundations and build your unique client application on top.
106
+
107
+ See [competitive_analysis.md](./docs/overview/competitive_analysis.md) for detailed comparison with SaaS Pegasus and Cookiecutter.
108
+
109
+ ---
110
+
111
+
112
+ ## Quick Start
113
+
114
+ ### Option A: Interactive Plan/Apply Workflow (Recommended)
115
+
116
+ ```bash
117
+ # Install QuickScale globally
118
+ ./scripts/install_global.sh
119
+
120
+ # Create a configuration interactively
121
+ quickscale plan myapp
122
+ # β†’ Select theme, modules, Docker options
123
+ # β†’ Generates quickscale.yml
124
+
125
+ # Execute the configuration
126
+ quickscale apply quickscale.yml
127
+ cd myapp
128
+ ```
129
+
130
+ ### Option B: Direct Init (Legacy)
131
+
132
+ ```bash
133
+ # Install QuickScale globally
134
+ ./scripts/install_global.sh
135
+
136
+ # Create your first project directly
137
+ quickscale init myapp
138
+ cd myapp
139
+
140
+ # Or choose a specific theme (v0.61.0+)
141
+ # quickscale init myapp --theme showcase_html # Default Showcase HTML theme
142
+ # quickscale init myapp --theme showcase_htmx # HTMX theme (coming in v0.70.0)
143
+ # quickscale init myapp --theme showcase_react # React theme (coming in v0.71.0)
144
+ ```
145
+
146
+ > **Note**: The `init` and `embed` commands are deprecated and will be removed in v0.70.0. Use `plan` + `apply` instead.
147
+
148
+ **Choose your development workflow:**
149
+
150
+ ### Option 1: Docker (Recommended for production parity)
151
+
152
+ ```bash
153
+ # Start all services (web + database)
154
+ quickscale up
155
+
156
+ # Run migrations
157
+ quickscale manage migrate
158
+
159
+ # Create superuser
160
+ quickscale manage createsuperuser
161
+
162
+ # View logs
163
+ quickscale logs -f web
164
+
165
+ # Open a shell in the container
166
+ quickscale shell
167
+
168
+ # Stop services
169
+ quickscale down
170
+ ```
171
+
172
+ **Visit http://localhost:8000** - Your app is running in Docker with PostgreSQL!
173
+
174
+ ### Option 2: Native Poetry (Simpler for quick testing)
175
+
176
+ ```bash
177
+ # Install dependencies
178
+ poetry install
179
+
180
+ # Run migrations
181
+ poetry run python manage.py migrate
182
+
183
+ # Start development server
184
+ poetry run python manage.py runserver
185
+ ```
186
+
187
+ **Visit http://localhost:8000** - Your app is running natively!
188
+
189
+ **For complete command reference and workflows**, see the [user_manual.md](./docs/technical/user_manual.md).
190
+
191
+ ## Learn More
192
+
193
+ - **[decisions.md](./docs/technical/decisions.md)** - Technical specifications and implementation rules
194
+ - **[quickscale.md](./docs/overview/quickscale.md)** - Strategic vision and competitive positioning
195
+ - **[competitive_analysis.md](./docs/overview/competitive_analysis.md)** - Comparison vs SaaS Pegasus and alternatives
196
+ - **[roadmap.md](./docs/technical/roadmap.md)** - Development roadmap and implementation plan
197
+ - **[user_manual.md](./docs/technical/user_manual.md)** - Commands and workflows
198
+ - **[contributing.md](./docs/contrib/contributing.md)** - Development workflow and coding standards
@@ -0,0 +1,20 @@
1
+ [tool.poetry]
2
+ name = "quickscale"
3
+ version = "0.71.0"
4
+ description = "Meta-package that installs quickscale-core and quickscale-cli together"
5
+ authors = ["Experto AI <victor@experto.ai>"]
6
+ license = "Apache-2.0"
7
+ homepage = "https://github.com/Experto-AI/quickscale"
8
+ repository = "https://github.com/Experto-AI/quickscale"
9
+ documentation = "https://github.com/Experto-AI/quickscale/tree/main/docs"
10
+ keywords = ["django", "cli", "scaffolding", "project-generator"]
11
+ readme = "README.md"
12
+
13
+ [tool.poetry.dependencies]
14
+ python = "^3.10"
15
+ quickscale-core = "^0.71.0"
16
+ quickscale-cli = "^0.71.0"
17
+
18
+ [build-system]
19
+ requires = ["poetry-core"]
20
+ build-backend = "poetry.core.masonry.api"
@@ -0,0 +1,8 @@
1
+ """
2
+ QuickScale meta package
3
+
4
+ This package is intentionally empty; it only exists to group the quickscale-core
5
+ and quickscale-cli packages so a single install pulls both.
6
+ """
7
+
8
+ __all__ = []