A project management app derived from Mind-Vision-Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 line
264B

  1. <?php
  2. declare(strict_types=1);
  3. require_once __DIR__ . '/../autoload.php';
  4. require_once __DIR__ . '/../database/seed_projects.php';
  5. $count = isset($argv[1]) ? max(1, (int) $argv[1]) : 6;
  6. $reset = in_array('--reset', $argv, true);
  7. seed_projects($count, $reset);

Powered by TurnKey Linux.