Skip to content

Files

Latest commit

9a5d432 · Feb 18, 2025

History

History
38 lines (27 loc) · 537 Bytes

DEPLOYING.md

File metadata and controls

38 lines (27 loc) · 537 Bytes

Deploying

Required packages

Install these outside the virtualenv

  • build
  • twine

Build the pip

rm dist/*
python3 -m build

Install locally

pip install dist/gigalixir-X.Y.Z.tar.gz

Upload and tsting from pypitest

twine upload -r pypitest dist/*
pip3 uninstall gigalixir
python3 -m pip install --user --extra-index-url https://test.pypi.org/simple/ gigalixir==X.Y.Z

Upload to production

twine upload -r pypi dist/*
pip3 uninstall gigalixir
python3 -m pip install --user gigalixir