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
- Host: GitHub
- URL: https://github.com/geffrerson7/medicapp-api
- Owner: Geffrerson7
- Created: 2025-03-16T18:17:55.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-03-20T22:51:08.000Z (9 months ago)
- Last Synced: 2025-07-10T15:19:51.480Z (6 months ago)
- Topics: fastapi, postgresql, python, python-dotenv, sqlalchemy, uvicorn
- Language: Python
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```