mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-22 21:41:32 +00:00
Add simple script to start development backend & frontend
This commit is contained in:
parent
c9caf56ce9
commit
8a80797d14
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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user