1
0
Fork 0
mirror of synced 2024-10-02 02:07:04 +13:00
appwrite/app/cli.php

16 lines
305 B
PHP
Raw Normal View History

2020-07-29 07:48:51 +12:00
<?php
2022-05-24 02:54:50 +12:00
require_once __DIR__ . '/init.php';
require_once __DIR__ . '/controllers/general.php';
2020-07-29 07:48:51 +12:00
2022-07-13 18:26:22 +12:00
use Appwrite\Task\CLIPlatform;
2022-04-10 21:38:22 +12:00
use Utopia\Database\Validator\Authorization;
Authorization::disable();
2020-07-29 07:48:51 +12:00
2022-07-13 18:26:22 +12:00
$cliPlatform = new CLIPlatform();
$cliPlatform->init('CLI');
$cli = $cliPlatform->getCli();
$cli->run();