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

https://github.com/andres15alvarez/fast-microservices

Two microservices, redisJSON and FastAPI
https://github.com/andres15alvarez/fast-microservices

fastapi microservices redis rediscloud

Last synced: 2 months ago
JSON representation

Two microservices, redisJSON and FastAPI

Awesome Lists containing this project

README

        

# Microservices with FastAPI
Two microservices made with FastAPI connected to the same RedisJSON instance.
These microservices communicate each other through HTTP.
Each folder is a microservice.

## Setup
In each folder:
```
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
uvicorn main:app --reload --port 8000
```
In the other microservice:
```
uvicorn main:app --reload --port 8001