kopia lustrzana https://github.com/bugout-dev/moonstream
				
				
				
			
		
			
	
	
		
			17 wiersze
		
	
	
		
			485 B
		
	
	
	
		
			Bash
		
	
	
		
		
			
		
	
	
			17 wiersze
		
	
	
		
			485 B
		
	
	
	
		
			Bash
		
	
	
|   | #!/usr/bin/env sh
 | ||
|  | 
 | ||
|  | # Sets up Brood server for docker compose: | ||
|  | # 1. Running alembic migrations to head (using config file specified  | ||
|  | # by the ALEMBIC_CONFIG environment variable) | ||
|  | # 2. Running dev.sh (from the directory from which this script was called) | ||
|  | 
 | ||
|  | set -e | ||
|  | 
 | ||
|  | if [ -z "$ALEMBIC_CONFIG" ] | ||
|  | then | ||
|  |     echo "Please explicitly set the ALEMBIC_CONFIG environment variable to point to an alembic configuration file" | ||
|  |     exit 1 | ||
|  | fi | ||
|  | 
 | ||
|  | ALEMBIC_CONFIG="$ALEMBIC_CONFIG" sh alembic.sh upgrade head |