diff --git a/app/config/collections.php b/app/config/collections.php index 49e2542e67..01d6efd50b 100644 --- a/app/config/collections.php +++ b/app/config/collections.php @@ -19,6 +19,20 @@ return [ 'https://appwrite.io', 'https://appwrite.test', ], + 'platforms' => [ + [ + '$collection' => Database::SYSTEM_COLLECTION_PLATFORMS, + 'name' => 'Production', + 'type' => 'web', + 'url' => 'https://appwrite.io', + ], + [ + '$collection' => Database::SYSTEM_COLLECTION_PLATFORMS, + 'name' => 'Development', + 'type' => 'web', + 'url' => 'https://appwrite.test', + ], + ], 'legalName' => '', 'legalCountry' => '', 'legalState' => '', diff --git a/app/views/console/users/index.phtml b/app/views/console/users/index.phtml index 421fedff97..a4ca393d3e 100644 --- a/app/views/console/users/index.phtml +++ b/app/views/console/users/index.phtml @@ -60,8 +60,8 @@ $limit = 5; - Name - Email + Name + Email Status Joined diff --git a/docker-compose.yml b/docker-compose.yml index 9cd88c03cc..5a283503f6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -12,7 +12,7 @@ services: - "80:80" - "443:443" environment: - - _APP_ENV=production + - _APP_ENV=development - _APP_OPENSSL_KEY_V1= - _APP_REDIS_HOST=redis - _APP_REDIS_PORT=6379