mirror of
https://github.com/manualdousuario/marreta.git
synced 2025-09-01 18:20:22 +00:00
configurações para debug
This commit is contained in:
parent
1c3db07c0c
commit
1a132e2b76
2 changed files with 5 additions and 1 deletions
|
@ -30,4 +30,7 @@ S3_ACL=private
|
|||
S3_ENDPOINT=
|
||||
|
||||
# Configurações do Selenium
|
||||
SELENIUM_HOST=localhost:4444
|
||||
SELENIUM_HOST=localhost:4444
|
||||
|
||||
# Configurações de Debug
|
||||
DEBUG=true
|
||||
|
|
|
@ -29,6 +29,7 @@ define('DNS_SERVERS', isset($_ENV['DNS_SERVERS']) ? $_ENV['DNS_SERVERS'] : '1.1.
|
|||
define('DISABLE_CACHE', isset($_ENV['DISABLE_CACHE']) ? filter_var($_ENV['DISABLE_CACHE'], FILTER_VALIDATE_BOOLEAN) : false);
|
||||
define('SELENIUM_HOST', isset($_ENV['SELENIUM_HOST']) ? $_ENV['SELENIUM_HOST'] : 'localhost:4444');
|
||||
define('CACHE_DIR', __DIR__ . '/cache');
|
||||
define('DEBUG', isset($_ENV['DEBUG']) ? filter_var($_ENV['DEBUG'], FILTER_VALIDATE_BOOLEAN) : false);
|
||||
|
||||
// Configurações de Redis
|
||||
define('REDIS_HOST', isset($_ENV['REDIS_HOST']) ? $_ENV['REDIS_HOST'] : 'localhost');
|
||||
|
|
Loading…
Add table
Reference in a new issue