Hi,
I can’t figure out how to set an environment variable that I can then access from PHP using getenv()
I want to set an API key in the environment so that it’s not hard coded in the app, and access it like this:
$api_key = getenv("API_KEY");
So far everything I’ve tried has failed to work.