mirror of
				https://github.com/AppFlowy-IO/AppFlowy.git
				synced 2025-11-04 03:54:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			370 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			370 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
#targets
 | 
						|
rustup target add x86_64-apple-darwin
 | 
						|
 | 
						|
#tools
 | 
						|
echo 'install tools'
 | 
						|
rustup component add rustfmt
 | 
						|
cargo install cargo-expand
 | 
						|
cargo install cargo-watch
 | 
						|
cargo install cargo-cache
 | 
						|
 | 
						|
#protobuf code gen env
 | 
						|
brew install protobuf@3.13
 | 
						|
brew tap dart-lang/dart
 | 
						|
brew install dart
 | 
						|
pub global activate protoc_plugin
 | 
						|
 | 
						|
cargo install --version 2.20.0 protobuf-codegen |