rvr-nextgen/rvr
Pőcze Bence a7790319eb
All checks were successful
rvr-nextgen/pipeline/pr-master This commit looks good
restrict oauth access
2023-04-12 00:10:14 +02:00

17 lines
469 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->add(new RVR\Cli\AddOAuthClientCommand());
$app->add(new RVR\Cli\AddOAuthRedirectUriCommand());
$app->add(new RVR\Cli\RemoveOAuthRedirectUriCommand());
$app->run();