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.
25 lines
647 B
25 lines
647 B
<?php
|
|
chdir('..');
|
|
require 'vendor/autoload.php';
|
|
require 'lib/Savant.php';
|
|
require 'lib/config.php';
|
|
require 'lib/helpers.php';
|
|
require 'lib/markdown.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';
|
|
|
|
session_name('indiepost');
|
|
session_set_cookie_params(86400*30);
|
|
session_start();
|
|
|
|
$app->run();
|