11 lines
122 B
Bash
11 lines
122 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -e
|
||
|
|
|
||
|
|
cd "$(dirname "$0")/.."
|
||
|
|
|
||
|
|
cd b0esche_cloud
|
||
|
|
|
||
|
|
flutter pub get
|
||
|
|
|
||
|
|
flutter run -d web-server --web-port 3000
|