webfinger/webfinger/__main__.py
a b5d038f0fe move to better packaging practices
pipenv not recommended apparently. switch to pdm and pyproject.toml with requirements.txt backup

make runnable
2022-12-07 23:40:51 -06:00

4 lines
73 B
Python

from webfinger import app
import uvicorn
uvicorn.run(app=app, port=7033)