Metadata-Version: 2.4
Name: softapi
Version: 0.2.1
Summary: Scaffold no-boilerplate FastAPI apps with sane defaults
Author-email: Your Name <you@example.com>
License: MIT
Project-URL: Homepage, https://github.com/yourname/softapi
Project-URL: Repository, https://github.com/yourname/softapi
Project-URL: Issues, https://github.com/yourname/softapi/issues
Keywords: fastapi,scaffold,backend,api,starter
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Framework :: FastAPI
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typer>=0.12.0
Requires-Dist: jinja2>=3.1.4
Dynamic: license-file

# FastAPI Starter

## Quickstart
```bash
pip install softapi
softapi myapp --fastapi --jwt --db sqlite
cd myapp
python -m venv .venv
# Windows: .\.venv\Scripts\activate
# macOS/Linux: source .venv/bin/activate
pip install -r requirements.txt
uvicorn app.main:app --reload
```
Open http://127.0.0.1:8000/docs
