mirror of
https://github.com/jimeh/zynapse.git
synced 2026-02-19 07:06:39 +00:00
14 lines
308 B
PHP
14 lines
308 B
PHP
<?php
|
|
/*
|
|
|
|
Zynapse Shell Script Environment
|
|
- environment settings use by generate, migrate and other shell scripts
|
|
|
|
*/
|
|
|
|
# environment used by the shell scripts, modify accordingly to
|
|
# the current environment the code is in
|
|
# ( development | test | production )
|
|
$shell_environment = 'development';
|
|
|
|
?>
|