guptast
September 9, 2022, 2:23pm
2
Environment variables can be used to store login credentials to the remote SQL Server. The information on how to setup and use Environment variables is available here:
Intro
Environment variables are variables which values change depending on the selected environment - development, staging, production. These are useful as they are defined globally per target and then they can be used in server-side components as a dynamic data. Use cases are - database connections, mailer settings, API Keys, URLs etc. which may be different for your different environments.
In our example we will show you how to setup environment variables for your database connections.
De…