Right now we only pass the NPM_ACCESS_TOKEN variable in the codebuild project to be able to install nodejs package from public and private repo.
|
{ name: 'NPM_ACCESS_TOKEN', value: options.npmToken } |
When it comes to Python sadly there is not such private and public packages, to overcome this we can use private GitHub repo (pip3 install git+https://$GITHUB_ACCESS_TOKEN:x-oauth-basic@github.com/blaabla/blabla.git), but to be able to do so within the codebuild project we need to have access to the GITHUB_ACCESS_TOKEN.
@rclark Do you think we could add this variable into the project ?
Right now we only pass the
NPM_ACCESS_TOKENvariable in the codebuild project to be able to install nodejs package from public and private repo.stork/lambda.js
Line 124 in b6d8990
When it comes to Python sadly there is not such private and public packages, to overcome this we can use private GitHub repo (
pip3 install git+https://$GITHUB_ACCESS_TOKEN:x-oauth-basic@github.com/blaabla/blabla.git), but to be able to do so within the codebuild project we need to have access to theGITHUB_ACCESS_TOKEN.@rclark Do you think we could add this variable into the project ?