Sharing the 360 feedback to your reviewee will not be the same again. This script will retrieve the 360 feedback data from Small Improvements.
- Create a virtual environemtn, run
python3 -m venv ENV
- Install the dependencies used in this project, run
ENV/bin/pip install -r requirements.txt
- Copy
env.exampleto.envand put your credentials.
- Install the package manager for macOS
brewfrom Homebrew first. - Install
pipenv, runbrew install pipenv
- Install the dependencies used in this project, run
pipenv install
- Copy
env.exampleto.envand put your credentials.
ENV/bin/python program.py > your_reviewee.htmlpipenv run python program.py > your_reviewee.htmlNote: To generate output in requirements.txt, run
pipenv lock --requirements > requirements.txtpipenv lock --dev --requirements > requirements-dev.txt
ENV/bin/pip install requirements-dev.txt
ENV/bin/flake8
ENV/bin/pytestpipenv install --dev
pipenv run flake8
pipenv run pytest- Fork it (https://github.com/prontotools/si360feedback/fork)
- Create your feature branch (
git checkout -b feature/fooBar) - Commit your changes (
git commit -am 'Add some fooBar') - Push to the branch (
git push origin feature/fooBar) - Create a new Pull Request