For security reasons, avoid hardcoding your Gemfury access token in pyproject.toml
. Instead, configure Poetry to authenticate with Gemfury dynamically:
Run the following command to configure poetry to use our core package:
poetry config repositories.gemfury https://jake-pixelum.fury.site/pypi
poetry config http-basic.gemfury $GEMFURY_TOKEN NOPASS
-
Add Gemfury as a Repository:
Configure Gemfury as a custom repository. Replace
USERNAME
with your Gemfury username.poetry config repositories.gemfury https://jake-pixelum.fury.site/pypi
-
Authenticate with Gemfury:
poetry config http-basic.gemfury $GEMFURY_TOKEN NOPASS
Once Gemfury is configured as a repository, you can install packages as you normally would:
poetry install