mirror of
				https://github.com/avatao-content/baseimage-tutorial-framework
				synced 2025-11-04 01:52:55 +00:00 
			
		
		
		
	Add simple script to start development backend & frontend
This commit is contained in:
		
							
								
								
									
										28
									
								
								tfw_magic_start.sh
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										28
									
								
								tfw_magic_start.sh
									
									
									
									
									
										Executable file
									
								
							@@ -0,0 +1,28 @@
 | 
			
		||||
#!/usr/bin/env bash
 | 
			
		||||
set -e
 | 
			
		||||
 | 
			
		||||
BACKEND_REPO="${BACKEND_REPO:-tutorial-framework-wip}"
 | 
			
		||||
FRONTEND_REPO="${FRONTEND_REPO:-tutorial-framework-ng}"
 | 
			
		||||
BACKEND_PATH="${TAO_PATH}/${BACKEND_REPO}"
 | 
			
		||||
FRONTEND_PATH="${TAO_PATH}/${FRONTEND_REPO}"
 | 
			
		||||
 | 
			
		||||
IMAGE_NAME="${IMAGE_NAME:-tfw}"
 | 
			
		||||
BACKEND_PORT="${BACKEND_PORT:-8888}"
 | 
			
		||||
AVATAO_SECRET="${AVATAO_SECRET:-secret}"
 | 
			
		||||
 | 
			
		||||
function run_frontend()
 | 
			
		||||
{
 | 
			
		||||
    cd $FRONTEND_PATH
 | 
			
		||||
    yarn start
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
function run_backend()
 | 
			
		||||
{
 | 
			
		||||
    cd $BACKEND_PATH
 | 
			
		||||
    docker build -t $IMAGE_NAME .
 | 
			
		||||
    docker run --rm -p $BACKEND_PORT:$BACKEND_PORT -e AVATAO_SECRET=$AVATAO_SECRET $IMAGE_NAME
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
trap 'kill %1; kill %2' SIGINT
 | 
			
		||||
run_frontend & run_backend
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user