Develop multiple projects locally and with GitHub #4849
Unanswered
jaymegordo
asked this question in
Q&A
Replies: 3 comments
-
|
@finswimmer been a few years |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Any updates on this? |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
You're essentially asking for one package to have two sources, which poetry does not support, and is very unlikely to support. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Say I have three projects using poetry:
project_aproject_bproject_c(generic utils to be shared between a + b)I would like to be able to develop them all in tandem locally, without having to push every little change in
project_cto GitHub and re sync changes withproject_aorproject_b.I can accomplish this by using a local path dependency:
BUT I would also like to be able to share this
project_aorproject_bwith other people without having to have them also cloneproject_cin the appropriate location.Is there any way to have something that would work like:
Where the GitHub repo is used as a "fallback" in cases where
project_cdoes not exist locally?Any options using install scripts? (I don't have experience with this)
Any other workflow tips to accomplish what basically comes down to:
"Share code between multiple projects, locally if available, else GitHub"?
Beta Was this translation helpful? Give feedback.
All reactions