Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 410 Bytes

develop.md

File metadata and controls

20 lines (15 loc) · 410 Bytes

Develop

# Install a recent non-system python
brew install python

# Install pipx to be able to easily run isolated Python packages
brew install pipx

# Install the tool for dependency management and packaging in Python
pipx install poetry

# Setup local dev
cd .../mackup
poetry install --with dev

# You can now edit files and see the impact of your changes
poetry run mackup --version
make test