Use port 8000 in docs (#357)

This commit is contained in:
Tanay Soni 2020-09-04 09:54:24 +02:00 committed by GitHub
parent a634eee40c
commit 26e4e7ad7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -248,9 +248,9 @@ A simple REST API based on `FastAPI <https://fastapi.tiangolo.com/>`_ is provide
To serve the API, adjust the values in :code:`rest_api/config.py` and run::
gunicorn rest_api.application:app -b 0.0.0.0:80 -k uvicorn.workers.UvicornWorker
gunicorn rest_api.application:app -b 0.0.0.0:8000 -k uvicorn.workers.UvicornWorker
You will find the Swagger API documentation at http://127.0.0.1:80/docs
You will find the Swagger API documentation at http://127.0.0.1:8000/docs
6. Labeling Tool