Update with real local dev options

This commit is contained in:
patdyn 2024-06-27 16:23:34 +02:00
parent edbe56055d
commit 2682cca424

View file

@ -1,15 +1,26 @@
# Dev Setup
## For local development
# For local development
```
```bash
python3 -m venv ~/.venv --upgrade
source ~/.venv/bin/activate
pip3 install --upgrade -r dev_requirements.txt
pip3 install --upgrade -r requirements.txt
```
# For testing a dev version
```
## For testing a dev version
With uploading to pypi
```bash
pyb publish upload
pip3 install --upgrade ddadevops --pre
```
With locally installing the package
```bash
pyb publish
pip3 install --upgrade -e /home/${USER}/repo/opensource/dda-devops-build/target/dist/ddadevops-4.12.1-dev/
```