| Scenario | Recommendation | |----------|----------------| | | Use ConanCenter (usually pre-added). | | Private/company packages | Add your own Artifactory/Cloud repo above ConanCenter ( --insert=0 ). | | Multiple remotes | Order matters: most trusted/important remotes first. | | CI/CD | Use conan remote add in your pipeline to ensure custom repos are known. | | Authentication | Remotes requiring login need conan user after adding. |
conan remote add myrepo https://myrepo.example.com conan add remote
If you are using a self-signed certificate for an internal server, you may need to toggle SSL: conan remote add --verify-ssl False (Use with caution). conan add remote