Merge pull request #6 from Jarli01/fix-monorepo

Fix monorepo
This commit is contained in:
Jarli01 2018-02-01 13:16:52 -05:00 committed by GitHub
commit c13d32f90e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 5 deletions

View File

@ -1,14 +1,14 @@
#!/bin/bash #!/bin/bash
xo_branch="stable" xo_branch="master"
xo_server="https://github.com/vatesfr/xo-server" xo_server="https://github.com/vatesfr/xen-orchestra"
xo_web="https://github.com/vatesfr/xo-web" xo_web="https://github.com/vatesfr/xo-web"
n_repo="https://raw.githubusercontent.com/visionmedia/n/master/bin/n" n_repo="https://raw.githubusercontent.com/visionmedia/n/master/bin/n"
yarn_repo="deb https://dl.yarnpkg.com/debian/ stable main" yarn_repo="deb https://dl.yarnpkg.com/debian/ stable main"
node_source="https://deb.nodesource.com/setup_5.x" node_source="https://deb.nodesource.com/setup_9.x"
yarn_gpg="https://dl.yarnpkg.com/debian/pubkey.gpg" yarn_gpg="https://dl.yarnpkg.com/debian/pubkey.gpg"
n_location="/usr/local/bin/n" n_location="/usr/local/bin/n"
xo_server_dir="/opt/xo-server" xo_server_dir="/opt/xen-orchestra"
xo_web_dir="/opt/xo-web" xo_web_dir="/opt/xo-web"
systemd_service_dir="/lib/systemd/system" systemd_service_dir="/lib/systemd/system"
xo_service="xo-server.service" xo_service="xo-server.service"
@ -32,12 +32,18 @@ sudo /usr/bin/apt-get install --yes build-essential redis-server libpng-dev git
/usr/bin/git clone -b $xo_branch $xo_server /usr/bin/git clone -b $xo_branch $xo_server
/usr/bin/git clone -b $xo_branch $xo_web /usr/bin/git clone -b $xo_branch $xo_web
# Patch to allow config restore
sed -i 's/< 5/> 0/g' /opt/xo-web/src/xo-app/settings/config/index.js
cd $xo_server_dir cd $xo_server_dir
/usr/bin/yarn /usr/bin/yarn
/usr/bin/yarn build /usr/bin/yarn build
cd packages/xo-server
sudo cp sample.config.yaml .xo-server.yaml sudo cp sample.config.yaml .xo-server.yaml
sudo sed -i "s|#'/': '/path/to/xo-web/dist/'|'/': '/opt/xo-web/dist'|" .xo-server.yaml sudo sed -i "s|#'/': '/path/to/xo-web/dist/'|'/': '/opt/xo-web/dist'|" .xo-server.yaml
cd $xo_web_dir cd $xo_web_dir
/usr/bin/yarn /usr/bin/yarn
/usr/bin/yarn build /usr/bin/yarn build
@ -51,7 +57,7 @@ Description= XO Server
After=network-online.target After=network-online.target
[Service] [Service]
WorkingDirectory=/opt/xo-server/ WorkingDirectory=/opt/xen-orchestra/packages/xo-server/
ExecStart=/usr/local/bin/node ./bin/xo-server ExecStart=/usr/local/bin/node ./bin/xo-server
Restart=always Restart=always
SyslogIdentifier=xo-server SyslogIdentifier=xo-server