mirror of
https://github.com/darkwire/darkwire.io.git
synced 2025-07-18 10:49:02 +00:00
14 lines
291 B
Bash
Executable File
14 lines
291 B
Bash
Executable File
echo "building client..."
|
|
cd client
|
|
yarn --production=false
|
|
REACT_APP_COMMIT_SHA=$SOURCE_VERSION \
|
|
REACT_APP_API_HOST=$API_HOST \
|
|
REACT_APP_API_PROTOCOL=$API_PROTOCOL \
|
|
REACT_APP_API_PORT=$API_PORT \
|
|
yarn build
|
|
cd ../
|
|
|
|
echo "building server..."
|
|
cd server
|
|
yarn --production=false
|
|
yarn build |