Skip to content

Instantly share code, notes, and snippets.

@thepsion5
Created October 8, 2014 22:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thepsion5/8d7a71589b9cc55d7cc6 to your computer and use it in GitHub Desktop.
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
<?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