Skip to content

Commit

Permalink
Adds first areas of main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
JDJGInc authored Aug 28, 2024
1 parent 1a71405 commit 7b817af
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import uvicorn
from fastapi import FastAPI


app = FastAPI()

# port 6234

if __name__ == "__main__":

uvicorn.run("main:app", port=6234, log_level="debug")

0 comments on commit 7b817af

Please sign in to comment.