-
Notifications
You must be signed in to change notification settings - Fork 9
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/next
env file and default configs
- Loading branch information
Showing
4 changed files
with
26 additions
and
36 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,20 +1,17 @@ | ||
# You app name. It is usually equal to the name of your project. | ||
APP_NAME='Mixpost Enterprise' | ||
# This value is the name of your application. | ||
APP_NAME='Mixpost' | ||
|
||
# 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' | ||
# Key used to encrypt and decrypt sensitive data. Generate this using the following tool: | ||
# https://mixpost.app/tools/encryption-key-generator | ||
APP_KEY= | ||
|
||
# Debug mode. If the environment is in production, we recommend setting it to 'false' | ||
APP_DEBUG=true | ||
# Debug mode setting. Set to 'false' for production environments. | ||
APP_DEBUG=false | ||
|
||
# URL of your application. Important: it is not allowed to be a slash at the end of the url. | ||
APP_URL=http://localhost | ||
# Full application URL. Important: it is not allowed to be a slash at the end of the url. | ||
APP_URL=https://example.com | ||
|
||
# Mysql connection setup | ||
DB_CONNECTION=mysql # Change this only if you know what you are doing | ||
# MySQL connection setup | ||
DB_HOST=127.0.0.1 | ||
DB_PORT=3306 | ||
DB_DATABASE=mixpost_db | ||
|
@@ -26,30 +23,15 @@ REDIS_HOST=127.0.0.1 | |
REDIS_PASSWORD=null | ||
REDIS_PORT=6379 | ||
|
||
# Default Queue Connection Name | ||
QUEUE_CONNECTION=redis | ||
|
||
# Default Cache Store | ||
CACHE_DRIVER=redis | ||
|
||
# Default Session Driver | ||
SESSION_DRIVER=redis | ||
|
||
# Default log channel for Mixpost | ||
MIXPOST_LOG_CHANNEL=mixpost | ||
|
||
# This is the path which Mixpost will use to load its core routes and assets | ||
MIXPOST_CORE_PATH=mixpost | ||
|
||
# Define log channel | ||
MIXPOST_LOG_CHANNEL=mixpost | ||
|
||
# The disk on which to store added files. Disks: "public", "s3". For "s3" you should fill in the AWS_* credentials below. | ||
MIXPOST_DISK=public | ||
|
||
# AWS Credentials | ||
AWS_ACCESS_KEY_ID= | ||
AWS_SECRET_ACCESS_KEY= | ||
AWS_DEFAULT_REGION= | ||
AWS_BUCKET= | ||
|
||
# SMTP | ||
MAIL_MAILER=smtp | ||
MAIL_HOST=smtp.mailgun.org | ||
|
@@ -60,5 +42,11 @@ MAIL_ENCRYPTION=tls | |
MAIL_FROM_ADDRESS="[email protected]" | ||
MAIL_FROM_NAME="${APP_NAME}" | ||
|
||
# AWS Credentials | ||
AWS_ACCESS_KEY_ID= | ||
AWS_SECRET_ACCESS_KEY= | ||
AWS_DEFAULT_REGION= | ||
AWS_BUCKET= | ||
|
||
# Sentry | ||
SENTRY_LARAVEL_DSN=null |
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
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
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