Skip to content

Instantly share code, notes, and snippets.

@brandonkelly
Forked from keithmancuso/gist:6982300
Created October 14, 2013 22:44
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 brandonkelly/6983518 to your computer and use it in GitHub Desktop.
Save brandonkelly/6983518 to your computer and use it in GitHub Desktop.
return array(
'*' => array(
'devMode' => false,
'environmentVariables' => array(
'siteUrl' => 'http://economicexperts.eu/'
),
),
'.dev' => array(
'devMode' => true,
'backupDbOnUpdate' => false,
'cacheDuration' => 1,
'environmentVariables' => array(
'siteUrl' => 'http://ecee.dev/'
)
),
'.eu' => array(
'devMode' => false,
'environmentVariables' => array(
'siteUrl' => 'http://economicexperts.eu/'
)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment