diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..804f5ce --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +venv/* +venv +src/__pycache__* \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..b4352ef --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +fastapi +pydantic +sqlalchemy +uvicorn[standard] \ No newline at end of file diff --git a/src/main.py b/src/main.py new file mode 100644 index 0000000..d786432 --- /dev/null +++ b/src/main.py @@ -0,0 +1,8 @@ +from fastapi import FastAPI + +app = FastAPI() + + +@app.get("/") +async def root(): + return {"message": "Hello World"} \ No newline at end of file