2023-02-25 22:54:57 +05:30
|
|
|
#! /usr/bin/bash
|
|
|
|
|
|
|
|
rm -rf dist
|
|
|
|
|
2023-02-25 22:54:58 +05:30
|
|
|
echo Building api server
|
2023-02-25 22:54:57 +05:30
|
|
|
cd srv
|
|
|
|
yarn build --no-source-maps > /dev/null 2>&1
|
|
|
|
|
2023-02-25 22:54:58 +05:30
|
|
|
echo Building website
|
2023-02-25 22:54:57 +05:30
|
|
|
cd ../web
|
|
|
|
yarn build --no-source-maps > /dev/null 2>&1
|
|
|
|
|
2023-02-25 22:54:58 +05:30
|
|
|
echo Creating dist
|
2023-02-25 22:54:57 +05:30
|
|
|
cd ..
|
2023-02-25 22:54:58 +05:30
|
|
|
cp srv/dist dist -fr
|
|
|
|
cp web/dist dist/web -fr
|
2023-02-25 22:54:57 +05:30
|
|
|
cp srv/node_modules dist/node_modules -rf
|
|
|
|
cp srv/public dist/public -rf
|
|
|
|
cp web/static/* dist/web/ -rf
|