As mentioned in the readme about constants, we are typically hardcoding the API URL into the application.
There are many times the app needs to run with staging, development and production environment API's and each of them may have different urls. Hard coding them in constants seems to add more logic to check the current environment and then act upon it.
With multiple schemas with their own environment variables solves the problem.
As mentioned in the readme about constants, we are typically hardcoding the API URL into the application.
There are many times the app needs to run with staging, development and production environment API's and each of them may have different urls. Hard coding them in constants seems to add more logic to check the current environment and then act upon it.
With multiple schemas with their own environment variables solves the problem.