mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-04 03:54:44 +00:00 
			
		
		
		
	* 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>
		
			
				
	
	
		
			35 lines
		
	
	
		
			833 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			833 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 Call the script in the 'language_files' folder
 | 
						|
echo Generating files using easy_localization
 | 
						|
cd language_files
 | 
						|
REM Allow execution permissions on CI
 | 
						|
chmod +x generate_language_files.cmd
 | 
						|
call generate_language_files.cmd %*
 | 
						|
 | 
						|
REM Return to the main script directory
 | 
						|
cd ..
 | 
						|
 | 
						|
REM Call the script in the 'freezed' folder
 | 
						|
echo Generating files using build_runner
 | 
						|
cd freezed
 | 
						|
REM Allow execution permissions on CI
 | 
						|
chmod +x generate_freezed.cmd
 | 
						|
call generate_freezed.cmd %*
 | 
						|
cd ..
 | 
						|
 | 
						|
echo Generating env files using build_runner
 | 
						|
cd env
 | 
						|
REM Allow execution permissions on CI
 | 
						|
chmod +x generate_env.cmd
 | 
						|
call generate_env.cmd %*
 | 
						|
 | 
						|
REM Return to the original directory
 | 
						|
cd /d "%original_dir%"
 |