You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
570 B

<?php
chdir('..');
require 'vendor/autoload.php';
// Configure the Savant plugin
\Slim\Extras\Views\Savant::$savantDirectory = 'vendor/saltybeagle/savant3';
\Slim\Extras\Views\Savant::$savantOptions = array('template_path' => 'views');
// Create a new app object with the Savant view renderer
$app = new \Slim\Slim(array(
'view' => new \Slim\Extras\Views\Savant()
));
require 'controllers/auth.php';
require 'controllers/controllers.php';
require 'controllers/alexa.php';
session_name('teacup');
session_set_cookie_params(86400*30);
session_start();
$app->run();