mirror of
https://github.com/Hestia-Homes/insight.git
synced 2026-06-30 13:10:44 +00:00
added backend
This commit is contained in:
parent
3b9d1b694f
commit
65392565c5
5 changed files with 20 additions and 2 deletions
|
|
@ -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
0
backend/README.md
Normal file
18
backend/pyproject.toml
Normal file
18
backend/pyproject.toml
Normal 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"
|
||||
0
backend/src/backend/__init__.py
Normal file
0
backend/src/backend/__init__.py
Normal file
0
backend/tests/__init__.py
Normal file
0
backend/tests/__init__.py
Normal file
Loading…
Add table
Reference in a new issue