Skip to content

Commit 4e0ba01

Browse files
committed
feat: initialize project with FastAPI backend and Next.js frontend setup
1 parent 20197a2 commit 4e0ba01

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

backend/app/api/main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@
99
api_router.include_router(utils.router)
1010
api_router.include_router(items.router)
1111

12+
1213
if settings.ENVIRONMENT == "local":
1314
api_router.include_router(private.router)

backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "app"
33
version = "0.1.0"
44
description = ""
5-
requires-python = ">=3.12,<4.0"
5+
requires-python = ">=3.10,<4.0"
66
dependencies = [
77
"fastapi[standard]<1.0.0,>=0.114.2",
88
"python-multipart<1.0.0,>=0.0.7",

0 commit comments

Comments
 (0)