upgrade notes

This commit is contained in:
Paul Schneider
2021-07-12 03:23:11 +01:00
parent 82cec8eece
commit 1aef7ce614
4 changed files with 41 additions and 37 deletions

View File

@ -12,7 +12,7 @@ isnd&
# get an api-key from <http://localhost:5000/ApkKeys>
isn push -k <lame-api-key> -s http://localhost:5000/packages your-lame-versionned.nupkg
isn push -k <lame-api-key> -s http://localhost:5000/index.json your-lame-versionned.nupkg
````
@ -65,8 +65,13 @@ sudo chown root.root /usr/local/bin/isn
### Mises à jour
````bash
# compiler tout
dotnet publish -c Release
# MAJ du serveur
sudo systemctl stop isnd
sudo cp -a src/isnd/bin/Release/netcoreapp2.1/publish/* /srv/www/isnd
sudo systemctl restart isnd
sudo systemctl start isnd
# MAJ du client
sudo cp -a src/isn/bin/Release/net472/* /usr/local/lib/isn
sudo chmod +x /usr/local/lib/isn/isn.exe
````