Skip to content

Commit

Permalink
Добавлен .env.testing
Browse files Browse the repository at this point in the history
  • Loading branch information
simba77 committed Jun 26, 2024
1 parent b00c357 commit 8e11c5a
Showing 1 changed file with 61 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .env.testing
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
APP_NAME="TestApp"
APP_ENV=local
APP_KEY=base64:SN2wq1Vu5PJfAs253txQz0exevJPTXAuzcfWkAuKNgg=
APP_DEBUG=true
APP_URL=http://localhost
APP_LOCALE=en

# Hostname without http
APP_HOST=laravel-template.loc

# Used in the docker-compose.yml
COMPOSE_PROJECT_NAME=laraveltemplate

LOG_CHANNEL=daily
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug

DB_CONNECTION=mysql
DB_HOST=mariadb
DB_PORT=3306
DB_DATABASE=laravel
DB_USERNAME=laravel
DB_PASSWORD=secret

BROADCAST_DRIVER=log
CACHE_DRIVER=file
FILESYSTEM_DISK=local
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120

MEMCACHED_HOST=127.0.0.1

REDIS_HOST=redis
REDIS_PASSWORD=null
#REDIS_PORT=6379

MAIL_MAILER=smtp
MAIL_HOST=mailhog
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="hello@example.com"
MAIL_FROM_NAME="${APP_NAME}"

AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=
AWS_USE_PATH_STYLE_ENDPOINT=false

PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=mt1

VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"

VITE_APP_NAME="${APP_NAME}"

0 comments on commit 8e11c5a

Please sign in to comment.