chore: lots of changes
This commit is contained in:
11
bin/check-env
Normal file
11
bin/check-env
Normal 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.
|
||||
Reference in New Issue
Block a user