This commit is contained in:
2022-09-15 17:14:57 +00:00
parent 092ec62b31
commit 4ac250686a
4 changed files with 56 additions and 3 deletions

View File

@@ -19,6 +19,8 @@ Run the appropriate for build type being tested standard upgrade script (except
#### PERPETUAL BUILD
##### Next staging build
```bash
cd /var/ayanova && \
sudo systemctl stop ayanova.service && \
@@ -30,8 +32,23 @@ sudo unzip -o ayanova-linux-x64-server.zip -x "config.json" && \
sudo systemctl start ayanova.service
```
##### public release build
```bash
cd /var/ayanova && \
sudo systemctl stop ayanova.service && \
sudo curl -O https://www.ayanova.com/download/ayanova-linux-x64-server.zip && \
sudo rm *.dll && \
sudo rm -r ./resource && \
sudo rm -r ./wwwroot && \
sudo unzip -o ayanova-linux-x64-server.zip -x "config.json" && \
sudo systemctl start ayanova.service
```
#### SUBSCRIPTION BUILD
##### Next staging build
```bash
cd /var/ayanova && \
sudo systemctl stop ayanova.service && \
@@ -43,6 +60,19 @@ sudo unzip -o ayanova-subscription-linux-x64-server.zip -x "config.json" && \
sudo systemctl start ayanova.service
```
##### public release build
```bash
cd /var/ayanova && \
sudo systemctl stop ayanova.service && \
sudo curl -O https://www.ayanova.com/download/ayanova-subscription-linux-x64-server.zip && \
sudo rm *.dll && \
sudo rm -r ./resource && \
sudo rm -r ./wwwroot && \
sudo unzip -o ayanova-subscription-linux-x64-server.zip -x "config.json" && \
sudo systemctl start ayanova.service
```
### Test install to windows server
Run installer on Windows test server.