1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-15 13:45:04 -05:00
wallabag/console

14 lines
284 B
Plaintext
Raw Normal View History

2013-11-21 08:26:17 -05:00
#!/usr/bin/env php
<?php
set_time_limit(0);
require_once __DIR__.'/vendor/autoload.php';
2013-11-22 09:01:46 -05:00
require_once __DIR__.'/app/app.php';
2013-11-21 08:26:17 -05:00
$console = $app['console'];
2013-11-21 08:51:07 -05:00
$console->add(new Poche\Command\UnitTestsCommand());
2013-11-21 16:44:41 -05:00
$console->add(new Poche\Command\CreateSchemaCommand());
2013-11-21 08:51:07 -05:00
$console->run();