chore: lots of changes

This commit is contained in:
2025-05-24 07:09:22 +02:00
parent 77ee769d5e
commit 899227b0a4
178 changed files with 5145 additions and 53 deletions

11
bin/check-env Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
if [ ! -f .env ]; then
echo "❌ .env fehlt!"
exit 1
fi
if ! grep -q "APP_PORT=" .env; then
echo "⚠️ APP_PORT nicht gesetzt"
fi
# TODO In make up oder make deploy einbauen.