rvr-nextgen/rvr
Pőcze Bence 7945627708
Some checks failed
rvr-nextgen/pipeline/head There was a failure building this commit
initial commit for rvr-nextgen
2023-04-08 00:45:40 +02:00

14 lines
312 B
PHP
Executable File

#!/usr/bin/env php
<?php
require 'app.php';
$app = new Symfony\Component\Console\Application('RVR Console', '');
$app->add(new RVR\Cli\MigrateDatabaseCommand());
$app->add(new RVR\Cli\AddUserCommand());
$app->add(new RVR\Cli\LinkViewCommand());
$app->add(new RVR\Cli\MaintainDatabaseCommand());
$app->run();