mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-10-31 02:37:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			598 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			598 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| set -euxo pipefail
 | |
| 
 | |
| DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
 | |
| cd "$DIR"
 | |
| 
 | |
| python3 -m venv venv
 | |
| source venv/bin/activate
 | |
| pip install --upgrade pip wheel setuptools
 | |
| pip install -r requirements.txt
 | |
| 
 | |
| mkdir -p ~/.datahub/plugins/frontend/auth/
 | |
| echo "test_user:test_pass" >> ~/.datahub/plugins/frontend/auth/user.props
 | |
| 
 | |
| echo "DATAHUB_VERSION = $DATAHUB_VERSION"
 | |
| DATAHUB_TELEMETRY_ENABLED=false  \
 | |
| DOCKER_COMPOSE_BASE="file://$( dirname "$DIR" )" \
 | |
| datahub docker quickstart --version ${DATAHUB_VERSION} --standalone_consumers --dump-logs-on-failure --kafka-setup
 | 
