We create a file called `custom-environment-variables` (must be called this) and
map a property to an environmental environment we have already set.
Let's create an environmental variable for a password:
```bash
export APP_PASSWORD='mypassword123'
```
Then in our custom variable file:
```json
{
"password": "APP_PASSWORD"
}
```
We can then safely reference this value in the course of our normal code:
```js
console.log(config.get("password"));
```
<pstyle="color:red">! But how would this be achieved in a production server?</p>
<pstyle="color:red">! And how could we do this programmatically at the start of a local development session without manually setting each environment variable in the terminal?</p>