Update with real local dev options
This commit is contained in:
parent
edbe56055d
commit
2682cca424
1 changed files with 15 additions and 4 deletions
|
@ -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/
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue