https://github.com/octavian451/weather_data
A PoC project demonstrating FastAPI with Celery, RabbitMQ and Redis using Docker Compose
https://github.com/octavian451/weather_data
celery docker-compose fastapi rabbitmq redis
Last synced: 22 days ago
JSON representation
A PoC project demonstrating FastAPI with Celery, RabbitMQ and Redis using Docker Compose
- Host: GitHub
- URL: https://github.com/octavian451/weather_data
- Owner: octavian451
- License: gpl-3.0
- Created: 2025-05-16T09:02:48.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-02T19:55:32.000Z (11 months ago)
- Last Synced: 2026-05-07T14:54:20.943Z (about 2 months ago)
- Topics: celery, docker-compose, fastapi, rabbitmq, redis
- Language: Python
- Homepage:
- Size: 73.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# weather_data POC
A proof-of-concept project demonstrating FastAPI with Celery, RabbitMQ, and Redis using Docker Compose.
## Quick Start
```sh
git clone https://github.com/deck451/celery_poc.git
cd celery_poc
docker compose up --build
```
## API Usage
- **POST** `/weather`
Request body: `{ "city": "Berlin" }`
- **GET** `/weather/{task_id}`
Returns weather result or task status.
## Services
- FastAPI app: [http://localhost:8000](http://localhost:8000)
- RabbitMQ management: [http://localhost:15672](http://localhost:15672) (user: guest/guest)