Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hello @klewin23
In order to build from private repositories you need to have the right permissions.
To run through the Github auth process again you can visit https://cloud.digitalocean.com/apps/github/install
If you have multiple orgs associated with your Github account, be sure to choose the org that your private repo is in.
Then on the Repository Access screen, either choose “All Repositories” or specifically select the now-private repo you want to deploy.
Regards
Hi,
I have also been struggling with this. To be clear, this is not talking about building from a private github repo that @alexdo is referring to, rather a npm package repository.
I have had success in switching to using npm, rather than yarn, to install. However this is not ideal as we prefer to use yarn in our workflows.
I have yet to find a way to successfully use yarn. It is remarkably frustrating. One solution might be, to use yarn locally, but npm in the build process. I’m going to look into .gitignore the yarn.lock file, and include a hook to use
npm i --package-lock-only
To generate a package.lock file for the build process to use npm.