mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 15:34:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			334 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			334 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
set -xe
 | 
						|
 | 
						|
sudo chown node node_modules
 | 
						|
git config --global --add safe.directory /workspace
 | 
						|
git submodule update --init
 | 
						|
corepack install
 | 
						|
corepack enable
 | 
						|
pnpm config set store-dir /home/node/.local/share/pnpm/store
 | 
						|
pnpm install --frozen-lockfile
 | 
						|
cp .devcontainer/devcontainer.yml .config/default.yml
 | 
						|
pnpm build
 | 
						|
pnpm migrate
 |