1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-15 21:55:09 -05:00
wallabag/console
2013-11-22 15:01:46 +01:00

14 lines
284 B
PHP
Executable File

#!/usr/bin/env php
<?php
set_time_limit(0);
require_once __DIR__.'/vendor/autoload.php';
require_once __DIR__.'/app/app.php';
$console = $app['console'];
$console->add(new Poche\Command\UnitTestsCommand());
$console->add(new Poche\Command\CreateSchemaCommand());
$console->run();