From ca29b387eaf63f553bcb3c48e08863db0c8538ee Mon Sep 17 00:00:00 2001 From: Yury Pikhtarev Date: Tue, 24 Jun 2025 00:08:40 +0400 Subject: [PATCH] chore: update .env.example for TorrentPier configuration - Set APP_MAINTENANCE_STORE to database for maintenance mode - Change DB_DATABASE to torrentpier for database configuration - Define CACHE_PREFIX as torrentpier_ for cache management These changes align the environment configuration with the updated project structure and naming conventions. --- .env.example | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index 5931751db..3db70e88b 100644 --- a/.env.example +++ b/.env.example @@ -9,7 +9,7 @@ APP_FALLBACK_LOCALE=en APP_FAKER_LOCALE=en_US APP_MAINTENANCE_DRIVER=file -# APP_MAINTENANCE_STORE=database +APP_MAINTENANCE_STORE=database PHP_CLI_SERVER_WORKERS=4 @@ -23,7 +23,7 @@ LOG_LEVEL=debug DB_CONNECTION=sqlite # DB_HOST=127.0.0.1 # DB_PORT=3306 -# DB_DATABASE=laravel +# DB_DATABASE=torrentpier # DB_USERNAME=root # DB_PASSWORD= @@ -38,7 +38,7 @@ FILESYSTEM_DISK=local QUEUE_CONNECTION=database CACHE_STORE=database -# CACHE_PREFIX= +CACHE_PREFIX=torrentpier_ MEMCACHED_HOST=127.0.0.1