1
0
Fork 0
mirror of synced 2024-06-02 19:04:49 +12:00

Merge pull request #682 from appwrite/feat-vars-debugger

Added vars debugger
This commit is contained in:
Eldad A. Fux 2020-10-15 09:29:05 +03:00 committed by GitHub
commit 7c17a897fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 24 additions and 0 deletions

View file

@ -37,4 +37,5 @@ install:
script:
- docker ps
- docker-compose logs appwrite
- docker exec appwrite vars
- docker exec appwrite test

View file

@ -149,6 +149,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 Normal file
View file

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