Metadata-Version: 2.1
Name: fastapi-easystart
Version: 0.0.7
Summary: FastAPI EasyStart simplifies FastAPI project setup with ready-to-use templates and configurations for environment management, CORS, and authentication. It lets you focus on coding by handling the boilerplate, making it easy to launch projects quickly.
Author-email: Ankaj Gupta <ankajgupta@coderwebsite.com>, Coder Website <contact@coderwebsite.com>
License: MIT
Keywords: fastapi,fastapi easy start,fastapi project setup,fastapi jwt,fastapi custom response,FastAPI projects,CORS setup,fastapi modular components
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: rich
Requires-Dist: passlib
Requires-Dist: pyjwt
Requires-Dist: bson
Requires-Dist: fastapi
Requires-Dist: pydantic
Requires-Dist: uvicorn
Requires-Dist: pydantic-settings

# FastAPI EasyStart

FastAPI EasyStart is a streamlined library designed to help developers quickly set up and configure a FastAPI project with essential components. It simplifies the process of creating APIs by providing ready-to-use templates and configurations for common tasks such as authentication, database integration, and CORS settings.


## Features

- 🚀 Quick Start Templates: Get started with FastAPI in seconds using predefined project structures and configurations.
- 🔧 Environment Management: Easily manage environment variables and settings.
- 🌍 CORS Configuration: Simplify CORS setup with built-in configurations.
- 📦 Modular Components: Use only what you need with modular and customizable components.
- 💡 Custom Exception Classes: Enhance error handling with predefined, customizable exception classes tailored for FastAPI.
- 🔐 Authentication: Easily integrate JWT-based authentication. (Coming Soon)
- 💾 Database Support: Seamless integration with popular databases like SQLite, PostgreSQL, and MongoDB. (Coming Soon)

## Installation

You can install the fastapi-easystart package using either pip or pipenv:

```bash
pip install fastapi-easystart
```

## Quickstart

### 1. Initialize a New FastAPI Project
Begin by creating a new FastAPI project with the default settings and configurations. Run the following command:
```bash
python -m  fastapi_easystart.main init
```
This command will generate the basic project structure, including directories and initial files, based on the easy start template.

### 2. Configure the main.py File
After initializing your project, configure the main.py file to set up the FastAPI application. If you want to either override or merge the existing main.py file with a new configuration, use the following command:
```bash
python -m fastapi_easystart.main config-main
```

### 3. Running the Development Server
Once the project is set up, you can start the development server:
```bash
uvicorn main:app --reload
```

Alternatively, you can use the FastAPI CLI command:

```bash
fastapi dev main.py
```

## Documentation

For full documentation, visit the FastAPI EasyStart Documentation (Coming Soon).

[//]: # (## Contributing)

[//]: # ()
[//]: # (Contributions are welcome! Please see the CONTRIBUTING.md file for more information on how to get involved.)


## License

This project is licensed under a modified MIT License - see the [LICENSE](LICENSE) file for details.

---

This version organizes the information clearly, ensures that placeholders for future content are marked, and maintains a professional tone throughout. Adjust the documentation and URLs when they are available.















