Add new publish script.
This commit is contained in:
parent
bbf2217718
commit
e291989ace
6 changed files with 1932 additions and 3 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -39,3 +39,5 @@ server/RdtClient.Web/wwwroot/
|
||||||
build/
|
build/
|
||||||
publish/
|
publish/
|
||||||
server/Downloader/
|
server/Downloader/
|
||||||
|
|
||||||
|
node_modules/
|
||||||
|
|
@ -73,7 +73,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- First release
|
- First release
|
||||||
- Add unraring progress and default auto download / auto remove options.
|
- Add unraring progress and default auto download / auto remove options.
|
||||||
|
|
||||||
[Unreleased]: https://github.com/rogerfar/rdt-client/compare/v1.5.5...HEAD
|
[Unreleased]: https://github.com/rogerfar/rdt-client/compare/1.5.5...HEAD
|
||||||
[1.5.5]: https://github.com/rogerfar/rdt-client/releases/tag/1.5.5
|
[1.5.5]: https://github.com/rogerfar/rdt-client/releases/tag/1.5.5
|
||||||
[1.5.4]: https://github.com/rogerfar/rdt-client/releases/tag/1.5.4
|
[1.5.4]: https://github.com/rogerfar/rdt-client/releases/tag/1.5.4
|
||||||
[1.5.3]: https://github.com/rogerfar/rdt-client/releases/tag/1.5.3
|
[1.5.3]: https://github.com/rogerfar/rdt-client/releases/tag/1.5.3
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,6 @@ You can run the docker container on Windows, Linux. To get started either use _D
|
||||||
|
|
||||||
```console
|
```console
|
||||||
docker run --pull=always
|
docker run --pull=always
|
||||||
--cap-add=NET_ADMIN -d \
|
|
||||||
--volume /your/download/path/:/data/downloads \
|
--volume /your/download/path/:/data/downloads \
|
||||||
--volume /your/storage/path/:/data/db \
|
--volume /your/storage/path/:/data/db \
|
||||||
--log-driver json-file \
|
--log-driver json-file \
|
||||||
|
|
|
||||||
|
|
@ -17,4 +17,8 @@ $location = Get-Location
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
Remove-Item -Path out -Recurse -Force
|
Remove-Item -Path out -Recurse -Force
|
||||||
|
|
||||||
|
gh-release --assets RealDebridClient.zip
|
||||||
|
|
||||||
|
Remove-Item RealDebridClient.zip
|
||||||
1904
package-lock.json
generated
Normal file
1904
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
20
package.json
Normal file
20
package.json
Normal file
|
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
"name": "rdt-client",
|
||||||
|
"version": "1.5.6",
|
||||||
|
"description": "This is a web interface to manage your torrents on Real-Debrid. It supports the following features:",
|
||||||
|
"main": "index.js",
|
||||||
|
"dependencies": {
|
||||||
|
"gh-release": "^5.0.0"
|
||||||
|
},
|
||||||
|
"devDependencies": {},
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git+https://github.com/rogerfar/rdt-client.git"
|
||||||
|
},
|
||||||
|
"author": "Roger Far",
|
||||||
|
"license": "MIT",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/rogerfar/rdt-client/issues"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/rogerfar/rdt-client#readme"
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue