Hey guys,
I deployed my application, and im currently using environment variables for my sensitive info - this works fine.
I want to add the debug => false to my application through an environment variable:
'debug' => getenv('DEBUG_STATUS'),
<?php
return [
'DEBUG_STATUS' => true
];
This works alright for my local environment, but when I try to add the info on my server, it just returns: "Whoops! There were some problems with your input." -> not the actual error.
I set it as follows:
Key: DEBUG_STATUS
Value: false
Anyone who can help?
It seemed that there was a minor glitch in Forge, because now it is working using the above method, and I can indeed confirm that the above will work for your environment variables :).
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community