1
0
ohmyform/scripts/heroku/postbuild.sh
2020-06-03 20:16:31 +02:00

12 lines
174 B
Bash
Executable File

echo "Build and Export UI"
yarn --cwd ui export
echo "Copy Exported UI to API"
cp -r ui/out/* api/public/
echo "Build API"
yarn --cwd api build
echo "FINISHED postbuild"