v1/start.sh
2019-11-19 23:56:52 -05:00

14 lines
No EOL
101 B
Bash
Executable file

#!/bin/sh
docker-compose up -d
pushd Server
npm ci
yarn dev
popd
pushd UI
npm ci
yarn start
popd