Skip to content

Commit d1a662b

Browse files
committed
Initial commit. Used UV to set up environment, add dependences. Main.py currently runs uvicorn server for Hello World message
0 parents  commit d1a662b

7 files changed

+221
-0
lines changed

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Python-generated files
2+
__pycache__/
3+
*.py[oc]
4+
build/
5+
dist/
6+
wheels/
7+
*.egg-info
8+
9+
# Virtual environments
10+
.venv

.python-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.12

README.md

Whitespace-only changes.

docs/developer_journal.md

Whitespace-only changes.

main.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
from fastapi import FastAPI
2+
import uvicorn
3+
4+
app = FastAPI()
5+
6+
@app.get("/")
7+
def root():
8+
return {"Hello": "World"}
9+
10+
if __name__ == "__main__":
11+
uvicorn.run("main:app", host="127.0.0.1", port=5000, log_level="info")

pyproject.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[project]
2+
name = "web-api-poc"
3+
version = "0.1.0"
4+
description = "POC for web API using fastapi"
5+
readme = "README.md"
6+
requires-python = ">=3.12"
7+
dependencies = [
8+
"fastapi>=0.115.8",
9+
"uvicorn>=0.34.0",
10+
]

uv.lock

+189
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)