@@ -0,0 +1,12 @@
"""Application launcher script"""
import uvicorn
from src.core.config import config
if __name__ == "__main__":
uvicorn.run(
"src.main:app",
host=config.server_host,
port=config.server_port,
reload=False
)
The note is not visible to the blocked user.