next.js frontend w/ mongodb local backend
This commit is contained in:
parent
e24e17e42b
commit
f333d9ba00
18 changed files with 3144 additions and 337 deletions
|
|
@ -1,19 +1,21 @@
|
|||
[project]
|
||||
name = "pyxr"
|
||||
version = "0.1.0"
|
||||
description = ""
|
||||
authors = [
|
||||
{name = "seemygesture",email = "seemygesture@gmail.com"}
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.14"
|
||||
dependencies = [
|
||||
"flask (>=3.1.0,<4.0.0)",
|
||||
"pymongo (>=4.11,<5.0)",
|
||||
"python-dotenv (>=1.0.1,<2.0.0)"
|
||||
]
|
||||
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
[tool.poetry]
|
||||
name = "pyxr"
|
||||
version = "0.1.0"
|
||||
description = ""
|
||||
authors = ["seemygesture <seemygesture@gmail.com>"]
|
||||
readme = "README.md"
|
||||
packages = [{include = "src"}]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = ">=3.11,<4.0"
|
||||
flask = ">=3.1.0,<4.0.0"
|
||||
pymongo = ">=4.11,<5.0"
|
||||
python-dotenv = ">=1.0.1,<2.0.0"
|
||||
flask-cors = ">=4.0.0,<5.0.0"
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
pytest = "^8.3.4"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue