I have built out a production API leveraging Laravel 5x (lets say api.test). I have gotten to the point now where I need to create a sandbox environment for users of the API to test out the API to without muddying up the live data (lets say sandbox.api.test)

I could obviously spin up an exact clone of my current production environment and keep everything separate auth, keys, etc.

Ideally I would want the authentication pieces of the sandbox to point at the production database so that users would not have to create new user accounts and separate oauth keys from passport.

What I am struggling with his how I could point anything authentication related so users/passport to my production environment and keep the rest of the DB actions local to sandbox.api.test

I know I can create a new connection in database.php but how then in my sandbox code do i update auth and oauth... is that even possible?

Citti

0

There are 0 best solutions below