@@ -0,0 +1,12 @@
import uvicorn
from os import getenv; from dotenv import load_dotenv
load_dotenv('.env_file')
if __name__ == "__main__":
uvicorn.run(
app="api.api:application",
port=int(getenv('PORT')),
host=getenv('HOST'),
reload=True
)
The note is not visible to the blocked user.