Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion abrechnung/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ def get_config(
debug: Annotated[bool, typer.Option(help="enable asyncio debugging")] = False,
):
log_setup(verbose - quiet)
asyncio.get_event_loop().set_debug(debug)

async def helper():
asyncio.get_event_loop().set_debug(debug)

asyncio.run(helper())

if not config_path.exists():
print(f"Config file does not exist: {config_path}")
Expand Down
1 change: 0 additions & 1 deletion debian/build_virtualenv
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ interest-noawait $SNAKE
interest dh-virtualenv-interpreter-update
EOF

wget -qO- https://get.pnpm.io/install.sh | sh -
export DESTDIR="debian/abrechnung"
NODE_OPTIONS="--max_old_space_size=4096" && pnpm install --frozen-lockfile && npx nx build web
mkdir -p $DESTDIR/usr/share/
Expand Down
2 changes: 2 additions & 0 deletions docker/Dockerfile-dhvirtualenv
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ RUN apt-get update -y -o Acquire::Languages=none \
RUN curl -fsSL https://deb.nodesource.com/setup_22.x | bash -
RUN apt-get install -y nodejs

RUN curl -fsSL https://get.pnpm.io/install.sh | bash -

RUN mkdir -p /abrechnung/.cypress_cache && chmod 777 /abrechnung/.cypress_cache
ENV CYPRESS_CACHE_FOLDER /abrechnung/.cypress_cache

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ classifiers = [
]
requires-python = ">=3.12"
dependencies = [
"sftkit==0.4.2",
"sftkit==0.4.3",
"prometheus-fastapi-instrumentator==7.0.2",
"pydantic[email]~=2.12.5",
"pydantic-settings==2.12.0",
Expand Down
8 changes: 4 additions & 4 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.