mirror of
https://github.com/darkwire/darkwire.io.git
synced 2025-07-24 05:00:17 +00:00
16 lines
183 B
Bash
Executable File
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 |