mirror of
				https://github.com/langgenius/dify.git
				synced 2025-11-04 12:53:38 +00:00 
			
		
		
		
	
		
			
	
	
		
			11 lines
		
	
	
		
			192 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			11 lines
		
	
	
		
			192 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| 
								 | 
							
								#!/bin/bash
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								# rely on `uv` in path
							 | 
						||
| 
								 | 
							
								if ! command -v uv &> /dev/null; then
							 | 
						||
| 
								 | 
							
								    echo "Installing uv ..."
							 | 
						||
| 
								 | 
							
								    pip install uv
							 | 
						||
| 
								 | 
							
								fi
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								# check uv.lock in sync with pyproject.toml
							 | 
						||
| 
								 | 
							
								uv lock --project api
							 |