-
-
Save kenng/289cb4d38c114e5ae071b5420a8eea78 to your computer and use it in GitHub Desktop.
sample laravel .env.testing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
APP_NAME="My Sample Laravel App" | |
APP_ENV=testing | |
APP_KEY= | |
APP_DEBUG=true | |
APP_URL=http://localhost | |
LOG_CHANNEL=stack | |
DB_CONNECTION=mysql | |
DB_HOST=db-tests | |
DB_PORT=3306 | |
DB_DATABASE= | |
DB_USERNAME= | |
DB_PASSWORD= | |
REDIS_CLIENT=phpredis | |
REDIS_HOST=redis | |
REDIS_PORT=6379 | |
REDIS_DB=0 | |
REDIS_PREFIX='redis_test_' | |
CACHE_DRIVER=database | |
CACHE_PREFIX='cache_' | |
TELESCOPE_ENABLED=false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment