rverse2/topia
Repflez de9059a904 Finish translation system
Also, add a JS minifier command so it can generate the JS files for each
language supported by rverse (other languages coming soon)
2021-09-14 05:00:23 -06:00

32 lines
No EOL
849 B
PHP

#!/usr/bin/env php
<?php
/*
* foxverse Topia
* Handles console interaction.
*/
namespace Miiverse;
use Symfony\Component\Console\Application;;
require_once 'core.php';
$application = new Application(config('general.name'));
// Declare commands
$application->add(new Console\Command\DatabaseInstallCommand);
$application->add(new Console\Command\DatabaseMigrateCommand);
$application->add(new Console\Command\DatabaseResetCommand);
$application->add(new Console\Command\DatabaseRollbackCommand);
$application->add(new Console\Command\DatabaseStatusCommand);
$application->add(new Console\Command\ChangeDisplayNameCommand);
$application->add(new Console\Command\ServeCommand);
$application->add(new Console\Command\SetupCommand);
$application->add(new Console\Command\JavascriptBuilderCommand);
// Run the application
$application->run();