Slide 38
Slide 38 text
The "Every Model is
an App" Project
This type of structure is another organizational nightmare,
for similar reasons to a monolith but due to an
opposite design pattern.
You cannot succinctly evaluate the functionality
of any one component.
Nothing is portable.
You'll get very acquainted with:
Traceback (most recent call last):
...
File "/app1/foo.py", line 1, in
from app2 import bar
File "/app2/bar.py", line 1, in
from app1 import foo
ImportError: cannot import name foo