1
0
mirror of https://github.com/moparisthebest/wallabag synced 2025-02-24 15:31:53 -05:00
wallabag/console

14 lines
290 B
Plaintext
Raw Normal View History

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