Skip to content

Instantly share code, notes, and snippets.

@akrabat
Last active August 29, 2015 14:21
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 akrabat/953b25b966b5ee866c7c to your computer and use it in GitHub Desktop.
Save akrabat/953b25b966b5ee866c7c to your computer and use it in GitHub Desktop.
<?php
//cli command entrypoint
include 'conf.php';
/**
*
use any cli library
*/
<?php
$container = new \Slim\Container();
/**
*
define services
*/
<?php
//web request entrypoint
include 'conf.php';
$app = new Slim\App($container);
/**
add middlewares
defines routes
...
*/
$app->run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment