An open API service indexing awesome lists of open source software.

https://github.com/geffrerson7/medicapp-api


https://github.com/geffrerson7/medicapp-api

fastapi postgresql python python-dotenv sqlalchemy uvicorn

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# 🚀 Medicapp API

This is a RESTful API built with **FastAPI**, designed to provide high-performance endpoints with modern Python async capabilities.

## ⚙️ Setup Instructions

### 1. Clone the repository:
```bash
git clone https://github.com/Geffrerson7/medicapp-api
cd medicapp-api
```
### 2. Create and activate a virtual environment:
```bash
python -m venv venv
source venv/bin/activate # For Linux/MacOS
venv\Scripts\activate # For Windows
```

### 3. Install dependencies:
```bash
pip install -r requirements.txt
```
### 4. Run the API:
```bash
uvicorn app.main:app --reload
```