- Python as main Programming Language
- FastAPI as Web Framework
- Docker as Container
- Clone this Repo.
- Run
pip install -r requirements.txt
(Make sure you've pip installed). - Run
uvicorn main:app --reload
.
- Clone this Repo.
- Run
docker build -t <your desired name> .
to build the docker image. - Make sure the image is succesfully built. Run
docker images
and see if the image is already built. - After that, run
docker run -d --name container -p <your desired port>:8085 covidapi
. - Open your
localhost:<the port>
to see the magic!
- Clone this Repo.
- Run
pip install -r requirements.txt
(Make sure you've pip installed). - Run
pytest
on root directory.