mirror of
				https://github.com/esphome/esphome.git
				synced 2025-11-04 09:01:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			219 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			219 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
# Set up ESPHome dev environment
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
cd "$(dirname "$0")/.."
 | 
						|
pip3 install -r requirements.txt -r requirements_optional.txt -r requirements_test.txt
 | 
						|
pip3 install --no-use-pep517 -e .
 | 
						|
 | 
						|
pre-commit install
 |