mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
ea0c4e96d2
* feat: implement magic link login * ci: create env file * ci: generate flutter env files * ci: disable inject env * chore: update table name * Update frontend/appflowy_flutter/lib/env/env.dart Co-authored-by: Mathias Mogensen <42929161+Xazin@users.noreply.github.com> * chore: fix compile --------- Co-authored-by: Mathias Mogensen <42929161+Xazin@users.noreply.github.com>
18 lines
508 B
Batchfile
18 lines
508 B
Batchfile
@echo off
|
|
|
|
REM Store the current working directory
|
|
set "original_dir=%CD%"
|
|
|
|
REM Change the current working directory to the script's location
|
|
cd /d "%~dp0"
|
|
|
|
REM Navigate to the project root
|
|
cd ..\..\..\appflowy_flutter
|
|
|
|
REM Navigate to the appflowy_flutter directory and generate files
|
|
echo Generating env files
|
|
call flutter packages pub get >nul 2>&1 && call dart run build_runner clean && call dart run build_runner build --delete-conflicting-outputs
|
|
echo Done generating env files
|
|
|
|
cd /d "%original_dir%"
|