Files
archived-web-bugs/scripts/console
Peter Kokot 5cdac95adc Add automatic fixtures generator importer
When developing site locally, developer needs to have data sets to run
manual tests, see how the app is built, and similar. The new additional
command line command using Symfony/Console component creates a main
scripts/console entry point for running Commands. Initial set of demo
fixtures data is generated using the faker library and includes most
data needed to use and test application manually in the local
environment.
2019-05-22 03:15:30 +02:00

16 lines
295 B
PHP
Executable File

#!/usr/bin/env php
<?php
/**
* Main command line console entry application.
*
* SYNOPSIS:
* php scripts/console [command] [<options>] [arguments]
*/
require_once __DIR__.'/../include/prepend.php';
use Symfony\Component\Console\Application;
$container->get(Application::class)->run();