darkwire.io/build.sh
2023-12-09 19:38:58 -08:00

16 lines
183 B
Bash
Executable File

#!/bin/bash
api_host=$API_HOST
echo "building client..."
cd client
yarn --production=true
yarn build
cd ../
echo "building server..."
cd server
yarn --production=true
yarn build