1
0
Fork 0
mirror of synced 2024-06-24 01:00:35 +12:00

Added the new vars command

This commit is contained in:
Eldad Fux 2020-08-12 15:12:48 +03:00
parent 07496447b4
commit 04c4b631d8
5 changed files with 24 additions and 1 deletions

View file

@ -148,6 +148,7 @@ RUN chmod +x /usr/local/bin/doctor && \
chmod +x /usr/local/bin/schedule && \
chmod +x /usr/local/bin/ssl && \
chmod +x /usr/local/bin/test && \
chmod +x /usr/local/bin/vars && \
chmod +x /usr/local/bin/worker-audits && \
chmod +x /usr/local/bin/worker-certificates && \
chmod +x /usr/local/bin/worker-deletes && \

View file

@ -14,6 +14,7 @@ include 'tasks/install.php';
include 'tasks/migrate.php';
include 'tasks/sdks.php';
include 'tasks/ssl.php';
include 'tasks/vars.php';
$cli
->task('version')

18
app/tasks/vars.php Normal file
View file

@ -0,0 +1,18 @@
<?php
global $cli;
use Utopia\App;
use Utopia\CLI\Console;
use Utopia\Config\Config;
$cli
->task('vars')
->desc('List all the server environment variables')
->action(function () {
$variables = Config::getParam('variables', []);
foreach ($variables as $key => $value) {
Console::log('- '.$value['name'].'='.App::getEnv($value['name'], ''));
}
});

3
bin/vars Executable file
View file

@ -0,0 +1,3 @@
#!/bin/sh
php /usr/src/code/app/cli.php vars $@

View file

@ -65,7 +65,7 @@ class Preloader
$already = count($this->included);
echo "[Preloader] Preloaded {$already} files.".PHP_EOL;
//echo "[Preloader] Preloaded {$already} files.".PHP_EOL;
}
private function loadPath(string $path): void