79726324

Date: 2025-08-05 15:23:42
Score: 1
Natty:
Report link

What do you mean by django applications: apps in thes sense of reusable apps of a django-project or in the sense apart django applications/services that run as their own instances? If I understood correctly the latter one.

If all your apps run on one server but need access to different databases you can create a custom database router, see the django-docs on this topic: https://docs.djangoproject.com/en/5.2/topics/db/multi-db/ An authRouter is explicitly listed as example.

Your auth app could then use one database and the other apps could use another db or each their own database ... .

If, however, your apps run as separate Django-applications (e.g., on different servers), you have two options:

Reasons:
  • Long answer (-1):
  • No code block (0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): What do you mean
  • Low reputation (0.5):
Posted by: erchenstein