'production', 'debug' => false)); $app = new \Slim\Slim(array( 'mode' => 'development', 'debug' => true)); $app->setName('opengnsys'); // Global variables. $userid = NULL; // User id. with access to REST API. // Check if services are running. $config = parse_ini_file("/etc/default/opengnsys"); // If server is running, include its routes and OGAgent push routes. if ($config['RUN_OGADMSERVER'] === "yes") { include("server.php"); include("ogagent.php"); } // If repository is running, include its routes. if ($config['RUN_OGADMREPO'] === "yes") { include("repository.php"); } // Execute REST using Slim. $app->run(); ?>