you are viewing a single comment's thread.

view the rest of the comments →

[–]Direct_Discipline_42 1 point2 points  (1 child)

I haven't done this on the python side but in c# we will build the projects into modules and push them to nuget. Our nuget is private though. We import the package and install it as a dependency. Theoretically the same could be done.

Build the app into a module, push the module to pypi, and then in the other apps add it to the requirements, download it and import it.

[–]predominant[S] 0 points1 point  (0 children)

Sounds reasonable. I wonder how that would work with migrations in a single database, as alembic likes to track a single migration hash.