mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-15 21:55:09 -05:00
14 lines
284 B
PHP
Executable File
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__.'/src/app.php';
|
|
|
|
$console = $app['console'];
|
|
|
|
$console->add(new Poche\Command\UnitTestsCommand());
|
|
$console->add(new Poche\Command\CreateSchemaCommand());
|
|
|
|
$console->run();
|