Created
October 8, 2014 22:20
-
-
Save thepsion5/8d7a71589b9cc55d7cc6 to your computer and use it in GitHub Desktop.
Example of a .env.php template, so developers using their own credentials know what's required
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//Template for all required environment variables | |
return array( | |
'DB_USER' => '', | |
'DB_PASS' => '', | |
'DB_DATABASE' => '', | |
'BUGSNAG_KEY' => '', | |
'NEW_RELIC_APPNAME' => '' | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment