20 lines
529 B
Plaintext
20 lines
529 B
Plaintext
# Copy this file to .env.testing and update values for your local Postgres test database.
|
|
# Running `php artisan test` will then use this separate database instead of your dev DB.
|
|
|
|
APP_ENV=testing
|
|
APP_DEBUG=true
|
|
CACHE_STORE=array
|
|
MAIL_MAILER=array
|
|
PULSE_ENABLED=false
|
|
QUEUE_CONNECTION=sync
|
|
SESSION_DRIVER=array
|
|
TELESCOPE_ENABLED=false
|
|
|
|
# Use a dedicated test database to avoid clearing your dev DB during tests
|
|
DB_CONNECTION=pgsql
|
|
DB_HOST=127.0.0.1
|
|
DB_PORT=5432
|
|
DB_DATABASE=teren_app_test
|
|
DB_USERNAME=postgres
|
|
DB_PASSWORD=secret
|