Files
fastapi-app-template/run.py
Ben Davis 39e6c9685a Changes to be committed:
modified:   README.md
	new file:   app/logger.py
	new file:   app/main.py
	new file:   configs/app.json
	new file:   configs/logger.ini
	new file:   run.py
2021-05-23 15:50:45 -07:00

8 lines
163 B
Python

import uvicorn
from app import main
from loguru import logger
app = main.app
if __name__ == '__main__':
uvicorn('app.main:app', host=app.host, port=app.port)