My project consists of several django applications that need to be deployed in different ways, possibly on different machines. However, often these applications sometimes need access to other models, so I thought about “externalizing” my models so that they can be obtained more elegantly from any application. Therefore, the idea is to have a directory structure similar to something like this:
/ + application1 + application2 + models
Is there a functional point for this (other than code support), since applications can cross-reference each other?
source share