Initial import

This commit is contained in:
Frank Agerholm 2026-01-25 10:21:23 +01:00
commit f8c3bfddf2
No known key found for this signature in database
15 changed files with 2262 additions and 0 deletions

25
pyproject.toml Normal file
View file

@ -0,0 +1,25 @@
[tool.poetry]
name = "server-worklog"
version = "0.1.0"
description = "Kleine Webanwendung zum Protokollieren von Arbeiten an Servern"
authors = ["Frank Agerholm <frank@agerholm.de>"]
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
fastapi = "^0.115.0"
uvicorn = {extras = ["standard"], version = "^0.30.0"}
SQLAlchemy = "^2.0.0"
psycopg = {version = "^3.1.0", extras = ["binary"]}
alembic = "^1.13.0"
python-jose = "^3.3.0"
passlib = {version = "^1.7.4", extras = ["bcrypt"]}
pydantic = "^2.0.0"
python-dotenv = "^1.2.1"
python-multipart = "^0.0.21"
bcrypt = "<4.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
httpx = "^0.27.0"