Hi there,
We are developing a multi-tenant application and I’m making sure Auth0 can fulfill our authentication needs. We plan to have multiple storefronts served from a single application. For example: store1.com and store2.com from a single nextjs app. We will also have a separate administration application that would be for store owners to manage their particular site/tenant.
We need:
- a set of users for the admin application with unique user/pass credentials
- each storefront would have its own set of users with unique user/pass credentials
The same user could exist in both the admin and a storefront but the user/pass combo should be unique. It’s unlikely that a user would exist in multiple storefronts but we still want to ensure that the users are unique between store1, store2, … storeN.
Appreciate any thoughts or feedback on the best way to go about this.