mirror of
				https://github.com/avatao-content/test-tutorial-framework
				synced 2025-11-04 05:32:55 +00:00 
			
		
		
		
	Extend magic starter to be able to do more... well, magic
This commit is contained in:
		@@ -49,8 +49,26 @@ build_and_run_backend()
 | 
			
		||||
    run_backend
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
start_tfw()
 | 
			
		||||
{
 | 
			
		||||
    trap 'exit' INT TERM
 | 
			
		||||
    trap 'kill 0' EXIT
 | 
			
		||||
    build_baseimage
 | 
			
		||||
    run_frontend & build_and_run_backend
 | 
			
		||||
    wait
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
case $1 in
 | 
			
		||||
    start)
 | 
			
		||||
        start_tfw
 | 
			
		||||
    ;;
 | 
			
		||||
    build)
 | 
			
		||||
        build_backend
 | 
			
		||||
    ;;
 | 
			
		||||
    buildtfw)
 | 
			
		||||
        build_baseimage
 | 
			
		||||
    ;;
 | 
			
		||||
    *)
 | 
			
		||||
        echo "Usage: tfw_magic_start.sh [start|build|buildtfw]"
 | 
			
		||||
    ;;
 | 
			
		||||
esac
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user