Add examples for tar

This commit is contained in:
dave 2019-06-11 21:44:05 -07:00
parent 7ecb13fc25
commit 4319c93138
1 changed files with 11 additions and 0 deletions

View File

@ -49,6 +49,13 @@ apt-get update
``` ```
Upload generic tarball:
```
curl -F 'f=@cpython-3.8.0b1.tar.gz' 'http://host/addpkg?provider=tar&reponame=cpython&name=cpython&version=3.8.0b1'
```
CLI CLI
--- ---
@ -62,6 +69,10 @@ Python:
* `rpcli -s http://localhost:8080 upload -y pypi -f tensorflow-2.0.0a0-cp37-cp37m-manylinux1_x86_64.whl -r reponame -p tensorflow -i 2.0.0a0` * `rpcli -s http://localhost:8080 upload -y pypi -f tensorflow-2.0.0a0-cp37-cp37m-manylinux1_x86_64.whl -r reponame -p tensorflow -i 2.0.0a0`
Tarball:
* `rpcli -s http://localhost:8080 upload -y tar -f ~/Downloads/cpython-3.8.0b1.tar.gz -r cpython -p cpython -i 3.8.0b1`
Notes Notes
----- -----