[Answer]-How to get arbitrary number of django apps running on same domain, sharing User database, but with different (and isolated) app models?

1👍

What you’re describing sounds a lot like what postgresql tries to accomplish with schemas. See django-tenant-schemas for an excellent implement implementation of this approach in django. Disclaimer: I’m a contributor to that project.

Leave a comment