Files
biteplan/docker/dev/entrypoint.sh
T

12 lines
295 B
Bash
Raw Normal View History

#!/bin/bash
set -e
# Aggiunge supporto web se mancante (crea solo web/, non tocca lib/)
if [[ ! -d /workspace/web ]]; then
echo "→ Inizializzazione supporto web..."
flutter create . --platforms=web
fi
flutter pub get
exec flutter run -d web-server --web-hostname=0.0.0.0 --web-port=5173