mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-08 16:02:40 +01:00
ba37149bf9
Summary: Ref T9156. This makes the UX a little more modern/standard/safe. Test Plan: ``` epriestley@orbital ~/dev/phabricator $ ./bin/lipsum generate Choose which type or types of test data you want to generate, or select "all". - Differential Revisions - Files - Maniphest Tasks - Pastes - Pholio Mocks - Projects - User Accounts ``` Reviewers: chad Reviewed By: chad Maniphest Tasks: T9156 Differential Revision: https://secure.phabricator.com/D14873
21 lines
600 B
PHP
Executable file
21 lines
600 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
$root = dirname(dirname(dirname(__FILE__)));
|
|
require_once $root.'/scripts/__init_script__.php';
|
|
|
|
$args = new PhutilArgumentParser($argv);
|
|
$args->setTagline(pht('synthetic data generator'));
|
|
$args->setSynopsis(<<<EOSYNOPSIS
|
|
**lipsum** __command__ [__options__]
|
|
Generate synthetic test data to make development easier.
|
|
|
|
EOSYNOPSIS
|
|
);
|
|
$args->parseStandardArguments();
|
|
|
|
$workflows = id(new PhutilClassMapQuery())
|
|
->setAncestorClass('PhabricatorLipsumManagementWorkflow')
|
|
->execute();
|
|
$workflows[] = new PhutilHelpArgumentWorkflow();
|
|
$args->parseWorkflows($workflows);
|