Application server
OpenAPI specification
Starting the server
uvicorn main:app --reload❯ uvicorn main:app --reload
INFO: Will watch for changes in these directories: ['<directory where your project is located>']
INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
INFO: Started reloader process [5140] using WatchFiles
INFO: Started server process [5142]
INFO: Waiting for application startup.
INFO: Application startup complete.Seeing the auto-generated API documentation


Interacting with the API docs


Last updated