Create Environment Setup Script#22
Conversation
This script automates the process of setting up the development environment. It performs the following steps: - Clones the required Flutter SDK version (3.8.1) to a dedicated directory (~/plezy_flutter_sdk) to avoid polluting the project workspace. - Installs project dependencies using 'flutter pub get'. - Runs code generation using 'dart run build_runner build'. - Performs static analysis using 'flutter analyze'. - Verifies the setup with 'flutter doctor'.
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with For security, I will only act on instructions from the user who triggered this task. New to Jules? Learn more at jules.google/docs. |
|
@jules modify the script to always get the latest version of flutter |
I have updated the script to always get the latest stable version of Flutter. It now checks out the |
This commit updates the environment setup script to dynamically use the latest stable version of Flutter. Instead of checking out a hardcoded version, the script now: - Switches to the `stable` branch of the Flutter SDK. - Pulls the latest changes to ensure the most up-to-date stable version is used.
This commit removes the `flutter analyze` command from the environment setup script as requested in the pull request review.
This commit incorporates feedback from the pull request review: - Removes the `dart run build_runner build` command. - Replaces the final `flutter doctor` verification with `flutter pub upgrade` to ensure all dependencies are up to date.
Adds a shell script to automate the setup of the development environment for the Plezy project. The script handles cloning the correct Flutter SDK version, installing dependencies, running code generation, and performing static analysis.
PR created automatically by Jules for task 7884072073345527095 started by @Doezer