added backend

This commit is contained in:
Jun-te Kim 2025-11-15 14:01:53 +00:00
parent 3b9d1b694f
commit 65392565c5
5 changed files with 20 additions and 2 deletions

View file

@ -20,8 +20,8 @@ RUN useradd -m -s /usr/bin/bash ${USER} \
&& echo "${USER} ALL=(ALL) NOPASSWD: ALL" >/etc/sudoers.d/${USER} \
&& chmod 0440 /etc/sudoers.d/${USER}
# # Install Poetry
# RUN pip install --no-cache-dir poetry
# Install Poetry
RUN pip install --no-cache-dir poetry
# # Install Node.js 22 (from NodeSource)

0
backend/README.md Normal file
View file

18
backend/pyproject.toml Normal file
View file

@ -0,0 +1,18 @@
[project]
name = "backend"
version = "0.1.0"
description = ""
authors = [
{name = "Jun-te Kim",email = "junte.kim@mealcraft.com"}
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
]
[tool.poetry]
packages = [{include = "backend", from = "src"}]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"

View file

View file