I'm developing a Loopback-based NodeJS app that uses GitHub Passport auth. For my development, I use localhost in my callbackURL setting in providers.json, but I have to change it to the published URL every time I deploy. At the same time, I have to change the same setting on GitHub.
How do you handle such scenarios? Is it possible to put a setting in providers.json? Is it possible to use two applications on GitHub and switch between them?
Probably you are loading the
providers.jsonfile in yourserver.jslike in documentation: (https://loopback.io/doc/en/lb3/Configuring-providers.json.html)So you can create two separate
providers.jsonfiles (e.g. providers.dev.json providers.prod.json) and load a proper one according to e.g. NODE_ENV environment variable