Best docs Cinnamon will probably ever have (#105)

This commit is contained in:
ian_Cin
2023-12-20 11:30:25 +07:00
committed by GitHub
parent 0e30dcbb06
commit 230328c62f
40 changed files with 1036 additions and 46 deletions

24
docs/upload-package.md Normal file
View File

@@ -0,0 +1,24 @@
Devpi server endpoint (subjected to change): https://ian_devpi.promptui.dm.cinnamon.is/root/packages
Install devpi-client
```bash
pip install devpi-client
```
Login to the server
```bash
devpi use <server endpoint> # set server endpoint provided above
devpi login <user name> --password=<your password> # login
```
If you don't yet have an account, please contact Ian or John.
Upload your package
```bash
devpi use <package name>\dev # choose the index to upload your package
cd <your package directory which must contain a pyproject.toml/setup.py>
devpi upload
```