python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Local traefik https proxy setup issue with uvicorn and FastAPI
I'm currently attempting to setup a traefik proxy to serve a Fast API app up on https locally, but I am encountering the following error that I have been unable to debug further, notably:
perseus_api ...
Micheal J. Roberts
Votes: 0
Answers: 0
Dockerfile for a fastAPI app using Factory pattern with unicorn
I am building a back-end service for a full-stack application using fastAPI and unicorn.
src/asgi.py
import uvicorn
from src import create_app
app = create_app()
if __name__ == "__main__":...
Pierre-Alexandre
Votes: 0
Answers: 1
Uvicron process becom zombie after OOM killer
I have a fast-api service wrapped in a docker,
I am running it with the following command:
uvicorn --host 0.0.0.0 --workers 10 --backlog 20 --timeout-keep-alive 65 my_python_main:app
The service work...
Ehud Lev
Votes: 0
Answers: 1
import uvicorn could not be resolved
I am trying to create an api with fastapi.
I have installed and imported uvicorn and fastapi. However I get these errors messages:
Exception has occurred: ModuleNotFoundError
No module named 'uvicorn...
Vic
Votes: 0
Answers: 0