Add events module with dashboard UI, scheduling, signups, and settings updates; extend env/readme.

This commit is contained in:
Pascal Prießnitz
2025-12-02 23:52:10 +01:00
parent 874b01c999
commit 829d160164
578 changed files with 37647 additions and 11590 deletions

9
tmp_check.py Normal file
View File

@@ -0,0 +1,9 @@
from pathlib import Path
raw = Path('src/services/ticketService.ts').read_bytes()
print('len', len(raw))
try:
raw.decode('utf-8')
print('utf8 ok')
except Exception as e:
print('decode error', e)
print(raw[e.start:e.start+12])