How to Share single App to Django Developer?

I am developing a big application.

How to share only single app to a developer. For Example there are 5 developers working on a Project. I want each developer to see only single app. Not complete code. Problem i am facing is with Django ORM. Since we import Django models inside the views. So other apps should be present in Django project to work.

Approach which i found → Instead of Django ORM use Sqlalchemy. Here i can give access to specific app to developer. If he require some other table then i give him permission from Postgres to that corresponding table.

I am confused in this method. Do big companies like Instagram provide code to every developer?

Any blog or any answer is appreciated.

Back to Top