-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from inovector/develop
.env readme
- Loading branch information
Showing
1 changed file
with
24 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,47 @@ | ||
# You app name. It is usually equal to the name of your project. | ||
APP_NAME='Mixpost Lite' | ||
|
||
# Your application environment. If you are ready for production, set 'production' | ||
APP_ENV=local | ||
|
||
# Is used to encrypt and decrypt sensitive data. Generate it with: 'php artisan key:generate' | ||
APP_KEY= | ||
|
||
# Debug mode. If the environment is in production, we recommend setting it to 'false' | ||
APP_DEBUG=true | ||
|
||
# URL of your application. Important: it is not allowed to be a slash at the end of the url. | ||
APP_URL=http://localhost | ||
|
||
# You can define the application port here (Only if you install with docker-compose) | ||
APP_PORT=80 | ||
|
||
# The user ID in your system. You can find it with 'id -u' (Only if you install with docker-compose) | ||
UID=1000 | ||
GID=1000 | ||
|
||
LOG_CHANNEL=stack | ||
LOG_DEPRECATIONS_CHANNEL=null | ||
LOG_LEVEL=debug | ||
# The group ID in your system. You can find it with 'id -g' (Only if you install with docker-compose) | ||
GID=1000 | ||
|
||
DB_CONNECTION=mysql | ||
# Mysql connection setup | ||
DB_CONNECTION=mysql # Change this only if you know what you are doing | ||
DB_HOST=127.0.0.1 | ||
DB_PORT=3306 | ||
FORWARD_DB_PORT=3306 # (Only if you install with docker-compose. You can leave it 3306) | ||
DB_DATABASE=laravel | ||
DB_USERNAME=root | ||
DB_PASSWORD= | ||
|
||
BROADCAST_DRIVER=log | ||
CACHE_DRIVER=file | ||
FILESYSTEM_DISK=local | ||
QUEUE_CONNECTION=redis | ||
SESSION_DRIVER=file | ||
SESSION_LIFETIME=120 | ||
|
||
MEMCACHED_HOST=127.0.0.1 | ||
|
||
# Redis connection setup | ||
REDIS_HOST=127.0.0.1 | ||
REDIS_PASSWORD=null | ||
REDIS_PORT=6379 | ||
FORWARD_REDIS_PORT=6379 # (Only if you install with docker-compose. You can leave it 6379) | ||
|
||
MAIL_MAILER=smtp | ||
MAIL_HOST=mailpit | ||
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_HOST= | ||
PUSHER_PORT=443 | ||
PUSHER_SCHEME=https | ||
PUSHER_APP_CLUSTER=mt1 | ||
|
||
VITE_PUSHER_APP_KEY="${PUSHER_APP_KEY}" | ||
VITE_PUSHER_HOST="${PUSHER_HOST}" | ||
VITE_PUSHER_PORT="${PUSHER_PORT}" | ||
VITE_PUSHER_SCHEME="${PUSHER_SCHEME}" | ||
VITE_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" | ||
#Change this only if you know what you are doing | ||
QUEUE_CONNECTION=redis | ||
|
||
#Change this only if you know what you are doing | ||
MIXPOST_DISK=mixpost | ||
|
||
#Change this only if you know what you are doing | ||
MIXPOST_LOG_CHANNEL=mixpost |