
* #126 - vacation request reminders * #126 - fix workdays * #126 - changes * #126 - cs fix * #5 - bump codestyle * #126 - fix * #126 - fix * #126 - fix * #126 - fix * #126 - tests * #126 - fix * #126 - fix * #126 - fix seeders * #126 - fix * #126 - tests Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl>
68 lines
1.4 KiB
Plaintext
68 lines
1.4 KiB
Plaintext
APP_NAME="Toby HR application"
|
|
APP_ENV=local
|
|
APP_KEY=
|
|
APP_DEBUG=true
|
|
APP_URL=http://localhost
|
|
|
|
LOG_CHANNEL=stack
|
|
LOG_LEVEL=debug
|
|
|
|
DB_CONNECTION=pgsql
|
|
DB_HOST=toby-db-dev
|
|
DB_PORT=5432
|
|
DB_DATABASE=toby
|
|
DB_USERNAME=toby
|
|
DB_PASSWORD=password
|
|
DB_ROOT_PASSWORD=example
|
|
|
|
EXTERNAL_WEBSERVER_PORT=80
|
|
|
|
DOCKER_DEV_DB_EXTERNAL_PORT=5432
|
|
DOCKER_DEV_DB_DATABASE=${DB_DATABASE}
|
|
DOCKER_DEV_DB_USERNAME=${DB_USERNAME}
|
|
DOCKER_DEV_DB_PASSWORD=${DB_PASSWORD}
|
|
DOCKER_DEV_DB_ROOT_PASSWORD=${DB_ROOT_PASSWORD}
|
|
|
|
DOCKER_TEST_DB_EXTERNAL_PORT=5433
|
|
DOCKER_TEST_DB_DATABASE=${DB_DATABASE}
|
|
DOCKER_TEST_DB_USERNAME=${DB_USERNAME}
|
|
DOCKER_TEST_DB_PASSWORD=${DB_PASSWORD}
|
|
DOCKER_TEST_DB_ROOT_PASSWORD=${DB_ROOT_PASSWORD}
|
|
|
|
REDIS_PORT=6379
|
|
REDIS_HOST=toby-redis
|
|
|
|
XDG_CONFIG_HOME=/tmp
|
|
|
|
BROADCAST_DRIVER=log
|
|
CACHE_DRIVER=file
|
|
QUEUE_CONNECTION=redis
|
|
SESSION_DRIVER=redis
|
|
SESSION_LIFETIME=120
|
|
FILESYSTEM_DISK=local
|
|
|
|
MAILHOG_PORT=1025
|
|
MAILHOG_DASHBOARD_PORT=8025
|
|
|
|
MAIL_MAILER=smtp
|
|
MAIL_HOST=mailhog
|
|
MAIL_PORT=${MAILHOG_PORT}
|
|
MAIL_USERNAME=null
|
|
MAIL_PASSWORD=null
|
|
MAIL_ENCRYPTION=null
|
|
MAIL_FROM_ADDRESS=hello@example.com
|
|
MAIL_FROM_NAME="${APP_NAME}"
|
|
|
|
DOCKER_INSTALL_XDEBUG=false
|
|
|
|
GOOGLE_CLIENT_ID=
|
|
GOOGLE_CLIENT_SECRET=
|
|
GOOGLE_REDIRECT=http://localhost/login/google/end
|
|
GOOGLE_CALENDAR_ID=
|
|
LOCAL_EMAIL_FOR_LOGIN_VIA_GOOGLE=
|
|
|
|
SLACK_URL=https://slack.com/api
|
|
SLACK_CLIENT_TOKEN=
|
|
SLACK_SIGNING_SECRET=
|
|
SLACK_DEFAULT_CHANNEL="#general"
|