Metadata-Version: 2.4
Name: quickscale-cli
Version: 0.79.0
Summary: Command-line interface for QuickScale Django project generator
License-Expression: Apache-2.0
Keywords: django,cli,project-generator,saas
Author: Experto AI
Author-email: victor@experto.ai
Requires-Python: >=3.14,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.14
Classifier: Framework :: Django
Classifier: Framework :: Django :: 6.0
Requires-Dist: click (>=8.3.1,<9.0.0)
Requires-Dist: quickscale-core (>=0.79.0,<0.80.0)
Project-URL: Documentation, https://github.com/Experto-AI/quickscale/tree/main/docs
Project-URL: Homepage, https://github.com/Experto-AI/quickscale
Project-URL: Repository, https://github.com/Experto-AI/quickscale
Description-Content-Type: text/markdown

# quickscale-cli

Command-line interface package for QuickScale.

This package exposes the `quickscale` command used to plan, apply, inspect, and operate generated projects.

## Command groups

- Project lifecycle: `plan`, `apply`, `status`, `remove`
- Local development: `up`, `down`, `ps`, `logs`, `shell`, `manage`
- Deployment: `deploy`
- Module workflows: `update`, `push`

## Relationship to other packages

- `quickscale-cli` is the command surface
- `quickscale-core` contains the underlying scaffolding and template logic
- `quickscale` installs both together for convenience

## Install

Usually installed via the meta-package:

```bash
pip install quickscale
```

Standalone package installs can use this package's published metadata and dependency constraints.

## Documentation

- Repository overview: [QuickScale README](https://github.com/Experto-AI/quickscale/blob/main/README.md)
- Start guide: [START_HERE.md](https://github.com/Experto-AI/quickscale/blob/main/START_HERE.md)
- Technical decisions: [docs/technical/decisions.md](https://github.com/Experto-AI/quickscale/blob/main/docs/technical/decisions.md)
- CLI source entrypoint: [src/quickscale_cli/main.py](https://github.com/Experto-AI/quickscale/blob/main/quickscale_cli/src/quickscale_cli/main.py)

This README is package-local context only. Root documentation remains authoritative for repo-wide policy and scope.

