Metadata-Version: 2.4
Name: fastapi-scaffolder
Version: 0.1.2
Summary: Scaffold a FastAPI + SQLAlchemy backend boilerplate in seconds
Project-URL: Homepage, https://github.com/prathamdmehta/fastapi-scaffolder
Project-URL: Repository, https://github.com/prathamdmehta/fastapi-scaffolder
Author: Pratham
License-Expression: MIT
Keywords: backend,boilerplate,cli,fastapi,scaffold,sqlalchemy
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Framework :: FastAPI
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Code Generators
Requires-Python: >=3.10
Requires-Dist: jinja2>=3.1
Requires-Dist: typer>=0.12
Description-Content-Type: text/markdown

# fastapi-scaffolder

A CLI that generates a ready-to-code FastAPI + SQLAlchemy + SQLite
backend project — folders, DB session wiring, an example CRUD
resource, and tests — so you can skip straight to writing business
logic instead of rebuilding the same plumbing every time.

## Install & use

```bash
# one-off, no permanent install (like npx)
uvx fastapi-scaffolder init "My API"

# or install it properly
pip install fastapi-scaffolder
fastapi-scaffolder init "My API"
```

This creates a `my_api/` folder with a working FastAPI app.

`fastapi-scaffold` (no trailing "er") also works as a shorter alias for
the same command, kept for backward compatibility.

## Local development

```bash
cd fastapi-scaffolder
pip install -e . --break-system-packages   # editable install
fastapi-scaffold init "Demo Project"
```
