- folder name inside dev container is same as folder name on host so if it differs from qmk_userspace then setup.sh cannot be found and it sets incorrect user.overlay_dir - docs https://containers.dev/implementors/json_reference/
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			593 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			593 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
set -eEuo pipefail
 | 
						|
 | 
						|
wget https://bootstrap.pypa.io/get-pip.py
 | 
						|
python3 get-pip.py
 | 
						|
python3 -m pip install qmk
 | 
						|
rm get-pip.py
 | 
						|
 | 
						|
python3 -m pip install --upgrade milc
 | 
						|
 | 
						|
userspacePath="$1"
 | 
						|
 | 
						|
git config --global --add safe.directory "$userspacePath"
 | 
						|
git submodule update --init --recursive
 | 
						|
 | 
						|
[ -d /workspaces/qmk_firmware ] || git clone https://github.com/qmk/qmk_firmware.git /workspaces/qmk_firmware
 | 
						|
git config --global --add safe.directory /workspaces/qmk_firmware
 | 
						|
 | 
						|
qmk config user.qmk_home=/workspaces/qmk_firmware
 | 
						|
qmk config user.overlay_dir="$userspacePath"
 | 
						|
 | 
						|
qmk git-submodule
 |