ohmyform/scripts/heroku/postbuild.sh
2020-06-03 14:02:39 +02:00

12 lines
173 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"