Auto-start offer
Some checks are pending
tests / ci (push) Waiting to run

This commit is contained in:
myrmidex 2026-08-23 00:08:44 +02:00
parent 991a487210
commit 048def6a0b

View file

@ -132,5 +132,16 @@ pkgs.mkShell {
echo " app Laravel + Vite http://localhost:8001"
echo " db MariaDB localhost:3308"
echo ""
# ===================
# AUTO-START PROMPT
# ===================
if [ -f "$COMPOSE_FILE" ] && [ -t 0 ]; then
read -p "Start development containers? (y/N) " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
dev-up
fi
fi
'';
}