Hi,
Am Mon, 16 Mar 2015 01:23:22 -0700 (PDT)
schrieb Domagoj Kovač <
docto...@gmail.com>:
> I would like to have separate databases for every application
> including user management.
I can think of:
(a) You put all the application in the same database and share a user
model (look up 'reusable django apps')
(b) You let all applications have their own database but share one
common user database (look up 'django multiple databases')
(c) You set up the apps completely separated and use an external,
independent authentication provider (look up 'django ldap', 'django
openid', …)
For 'small home apps', I'd absolutely go for (a).
Best regards,
Raphael