| 1234567891011121314151617 | @echo offREM Store the current working directoryset "original_dir=%CD%"REM Change the current working directory to the script's locationcd /d "%~dp0"REM Navigate to the project rootcd ..\..\..\appflowy_flutterREM Navigate to the appflowy_flutter directory and generate filesecho Generating env filescall flutter packages pub get >nul 2>&1 && call dart run build_runner clean && call dart run build_runner build --delete-conflicting-outputsecho Done generating env filescd /d "%original_dir%"
 |