* #48 - postgreSQL db * #43 - vacation summary for employee (#66) * wip * wip * wip * wip * wip * wip * wip * #5 - bump dependencies * #43 - wip * #43 - add composer script * #43 - fix * #43 - fix * #43 - wip * #43 - ecs fix * #43 - cr fix * #43 - cr fix * #43 - fix Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl> * #48 - redis stuff * #48 - user avatars using ui-avatars.com * #48 - fix * #48 - fix * Apply suggestions from code review Co-authored-by: Marcin Tracz <marcin.tracz@blumilk.pl> * #48 - cr fix Co-authored-by: EwelinaLasowy <ewelina.lasowy@blumilk.pl> Co-authored-by: Marcin Tracz <marcin.tracz@blumilk.pl>
This commit is contained in:
24
.env.example
24
.env.example
@@ -7,33 +7,37 @@ APP_URL=http://localhost
|
||||
LOG_CHANNEL=stack
|
||||
LOG_LEVEL=debug
|
||||
|
||||
DB_CONNECTION=mysql
|
||||
DB_CONNECTION=pgsql
|
||||
DB_HOST=toby-db-dev
|
||||
DB_PORT=3306
|
||||
DB_PORT=5432
|
||||
DB_DATABASE=toby
|
||||
DB_USERNAME=toby
|
||||
DB_PASSWORD=password
|
||||
DB_ROOT_PASSWORD=example
|
||||
|
||||
DOCKER_DEV_DB_EXTERNAL_PORT=3306
|
||||
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=3307
|
||||
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}
|
||||
|
||||
EXTERNAL_WEBSERVER_PORT=
|
||||
REDIS_PORT=6379
|
||||
REDIS_HOST=toby-redis
|
||||
|
||||
XDG_CONFIG_HOME=/tmp
|
||||
|
||||
BROADCAST_DRIVER=log
|
||||
CACHE_DRIVER=file
|
||||
QUEUE_CONNECTION=sync
|
||||
SESSION_DRIVER=file
|
||||
QUEUE_CONNECTION=redis
|
||||
SESSION_DRIVER=redis
|
||||
SESSION_LIFETIME=120
|
||||
FILESYSTEM_DISK=local
|
||||
|
||||
@@ -46,15 +50,13 @@ MAIL_PORT=${MAILHOG_PORT}
|
||||
MAIL_USERNAME=null
|
||||
MAIL_PASSWORD=null
|
||||
MAIL_ENCRYPTION=null
|
||||
MAIL_FROM_ADDRESS=null
|
||||
MAIL_FROM_ADDRESS=hello@example.com
|
||||
MAIL_FROM_NAME="${APP_NAME}"
|
||||
|
||||
DOCKER_INSTALL_XDEBUG=false
|
||||
|
||||
GOOGLE_CLIENT_ID=
|
||||
GOOGLE_CLIENT_SECRET=
|
||||
GOOGLE_REDIRECT=
|
||||
|
||||
GOOGLE_REDIRECT=http://localhost/login/google/end
|
||||
GOOGLE_CALENDAR_ID=
|
||||
|
||||
LOCAL_EMAIL_FOR_LOGIN_VIA_GOOGLE=
|
||||
|
Reference in New Issue
Block a user