Compare commits

..

No commits in common. '7499e4bcee6efc368a57cb9a8635d9741e890d24' and '5f4e088146572dc0d2e10bd4ea9e036109118b20' have entirely different histories.

  1. 2
      README.md
  2. 8
      dev-init/dev-init-android.sh
  3. 8
      dev-init/dev-init-flutter.sh
  4. 8
      dev-init/dev-init-rust.sh

2
README.md

@ -1,6 +1,6 @@
### Build and configure ### Build and configure
Run `docker compose build` to build the dev container. Then **inside the container** run selected init scripts. E.g.: Run `docker compose build` to build the dev container. Then inside the container run selected init scripts. E.g.:
``` ```
bash /opt/dev-init/dev-init-flutter.sh bash /opt/dev-init/dev-init-flutter.sh

8
dev-init/dev-init-android.sh

@ -38,12 +38,8 @@ $SDKMANAGER --install "emulator"
mkdir -p ~/Library/Android/ ||: mkdir -p ~/Library/Android/ ||:
ln -sf /opt/android-sdk/ ~/Library/Android/sdk ||: ln -sf /opt/android-sdk/ ~/Library/Android/sdk ||:
# Build demo project if present # Build demo project
if [ -d "$ANDROID_SAMPLE_PROJECT" ]; then "$ANDROID_SAMPLE_PROJECT/build.sh"
"$ANDROID_SAMPLE_PROJECT/build.sh"
else
echo "Android demo project not found at $ANDROID_SAMPLE_PROJECT"
fi
flutter config --android-sdk $ANDROID_SDK_ROOT flutter config --android-sdk $ANDROID_SDK_ROOT
flutter emulators --create flutter emulators --create

8
dev-init/dev-init-flutter.sh

@ -32,11 +32,7 @@ flutter precache --linux --web
flutter doctor flutter doctor
flutter --version flutter --version
# Build demo project if present # Build demo project
if [ -d "$FLUTTER_SAMPLE_PROJECT" ]; then "$FLUTTER_SAMPLE_PROJECT/build.sh"
"$FLUTTER_SAMPLE_PROJECT/build.sh"
else
echo "Sample project not found at $FLUTTER_SAMPLE_PROJECT"
fi
echo "Flutter development environment setup completed successfully!" echo "Flutter development environment setup completed successfully!"

8
dev-init/dev-init-rust.sh

@ -24,11 +24,7 @@ cargo install wasm-pack
dart pub global activate fvm dart pub global activate fvm
dart --disable-analytics dart --disable-analytics
# Build demo project if present # Build demo project
if [ -d "$RUST_SAMPLE_PROJECT" ]; then "$RUST_SAMPLE_PROJECT/build.sh"
"$RUST_SAMPLE_PROJECT/build.sh"
else
echo "No sample project found in $RUST_SAMPLE_PROJECT"
fi
echo "Rust development environment setup completed successfully!" echo "Rust development environment setup completed successfully!"

Loading…
Cancel
Save