Metadata-Version: 2.4
Name: litestar-start
Version: 0.1.0a1
Summary: Interactive CLI to scaffold fullstack projects with modular choices
Project-URL: Documentation, https://github.com/youruser/litestar-start#readme
Project-URL: Issues, https://github.com/youruser/litestar-start/issues
Project-URL: Source, https://github.com/youruser/litestar-start
Author-email: Harshal Laheri <harshal@harshallaheri.me>
License-Expression: MIT
License-File: LICENSE
Keywords: cli,fullstack,generator,litestar,scaffolding,template
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Code Generators
Requires-Python: >=3.10
Requires-Dist: copier>=9.11.0
Requires-Dist: questionary>=2.1.1
Requires-Dist: rich>=14.2.0
Requires-Dist: typer>=0.21.1
Description-Content-Type: text/markdown

# Litestar Start

An interactive CLI tool to scaffold fullstack projects with modular choices for backend, frontend, database, and authentication.

## Installation

```bash
pipx run litestar-start

# uv
uvx litestar-start
```

## Usage

```bash
litestar-start
```

This will launch an interactive prompt where you can select:

- **Project name**: Your project's name
- **Backend framework**: Litestar, FastAPI, Django or Flask
- **Frontend framework**: React, Vue, Svelte, or None
- **Database**: PostgreSQL, MySQL, SQLite, or MongoDB
- **ORM**: SQLAlchemy, Prisma, Django ORM, or None
- **Authentication**: JWT, Session, OAuth2, or None

## Generated Project Structure

Based on your selections, the tool generates a complete project structure:

```
my-project/
├── backend/
│   ├── app/
│   │   ├── __init__.py
│   │   ├── main.py
│   │   ├── models/
│   │   ├── routes/
│   │   └── auth/
│   ├── pyproject.toml
│   └── requirements.txt
├── frontend/
│   ├── src/
│   ├── package.json
│   └── vite.config.ts
├── docker-compose.yml
├── .gitignore
├── .env.example
└── README.md
```

## License

MIT
