Skip to content

Developer Notes

Ryan Slominski edited this page Apr 27, 2022 · 27 revisions

See Python Development Notes

How to test edits to jaws-libp

  1. Run jaws docker-compose project
git clone https://github.com/JeffersonLab/jaws
cd jaws
docker-compose -f bind.yml up
  1. Inside jaws container clone jaws-libp project
docker exec -it jaws bash
cd /tmp
git clone https://github.com/JeffersonLab/jaws-libp.git
  1. Install project in edit mode
python3 -m pip install -e jaws-libp
  1. Make changes and run jaws script to test changes

Note: You can also release alpha/beta pre-releases that don't affect "latest" on pypi.

Note: You could instead install jaws-scripts package in edit mode, but you'd need a docker environment with Kafka in it to be useful.

Clone this wiki locally