From: Winfried Kappeler Date: Wed, 27 Mar 2024 18:52:35 +0000 (+0100) Subject: env X-Git-Url: https://gitweb.hamatoma.de/?a=commitdiff_plain;h=617e1209e99e6f92e0c621c2b1257ca6efbb27ae;p=worxer.git env --- diff --git a/composer.json b/composer.json index c550f6d..e98ec96 100644 --- a/composer.json +++ b/composer.json @@ -68,11 +68,8 @@ "prefer-stable": true, "repositories": { "laraknife": { - "type": "path", - "url": "../laraknife", - "options": { - "symlink": true - } + "type": "vcs", + "url": "https://github.com/hamatoma/laraknife" } } } diff --git a/env.example b/env.example new file mode 100644 index 0000000..eaeebd9 --- /dev/null +++ b/env.example @@ -0,0 +1,64 @@ +APP_NAME=worxer +APP_ENV=local +APP_KEY=base64:fZJH3Zp3ijKN+WBmBsRyDzNLovaG5XbZxbmvCbADx7w= +APP_DEBUG=true +APP_TIMEZONE=UTC +APP_URL=http://worxer.test + +APP_LOCALE=de_DE +APP_FALLBACK_LOCALE=en +APP_FAKER_LOCALE=en_US + +APP_MAINTENANCE_DRIVER=file +APP_MAINTENANCE_STORE=database + +BCRYPT_ROUNDS=12 + +LOG_CHANNEL=stack +LOG_STACK=single +LOG_DEPRECATIONS_CHANNEL=null +LOG_LEVEL=debug + +DB_CONNECTION=mysql +DB_HOST=127.0.0.1 +DB_PORT=3306 +DB_DATABASE=lrvworxer +DB_USERNAME=worxer +DB_PASSWORD=topsecret + +SESSION_DRIVER=database +SESSION_LIFETIME=120 +SESSION_ENCRYPT=false +SESSION_PATH=/ +SESSION_DOMAIN=null + +BROADCAST_CONNECTION=log +FILESYSTEM_DISK=local +QUEUE_CONNECTION=database + +CACHE_STORE=database +CACHE_PREFIX= + +MEMCACHED_HOST=127.0.0.1 + +REDIS_CLIENT=phpredis +REDIS_HOST=127.0.0.1 +REDIS_PASSWORD=null +REDIS_PORT=6379 + +MAIL_MAILER=smtp +MAIL_HOST=smtp.web.de +MAIL_PORT=587 +MAIL_USERNAME=laraknife@web.de +MAIL_PASSWORD=Be.Happy4711 +MAIL_ENCRYPTION=STARTTLS +MAIL_FROM_ADDRESS="${MAIL_USERNAME}" +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 + +VITE_APP_NAME=worxer