Hi - I would like to have multiple apps working independently, but still able to communicate with each other. For example - I have an app that takes care of user authentication, roles, permissions, etc. Then I have an app that logs information to serveral tables.
I would like the info logging app use the authentication app to ensure the user is valid, and has correct permissions. (and other apps the same). I know I could use a rest api or something like that, but that still involves an http call. I would like to "include" one app within the other, and yet be able to configure each one separately, use different dbs etc.
Any ideas?
I've gotten it somewhat working by registering the namespaces of the user auth app in the logging app, but that doesn't allow separate configuration files.
Thanks! -Seth