Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 467 Bytes

DEPLOYING.md

File metadata and controls

31 lines (23 loc) · 467 Bytes

Deploying

Required packages

Install these outside the virtualenv

  • build
  • twine

Build the pip

rm dist/*
python3 -m build

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