-
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 #10 from inovector/new-doc
removed docker, optimized .env.example, added aws env vars
- Loading branch information
Showing
14 changed files
with
29 additions
and
440 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,47 +1,33 @@ | ||
# You app name. It is usually equal to the name of your project. | ||
APP_NAME='Mixpost Lite' | ||
# 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 | ||
|
||
# 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 | ||
# Debug mode setting. Set to 'false' for production environments. | ||
APP_DEBUG=false | ||
|
||
# The user ID in your system. You can find it with 'id -u' (Only if you install with docker-compose) | ||
UID=1000 | ||
# Full application URL. Important: it is not allowed to be a slash at the end of the url. | ||
APP_URL=https://example.com | ||
|
||
# The group ID in your system. You can find it with 'id -g' (Only if you install with docker-compose) | ||
GID=1000 | ||
|
||
# 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 | ||
FORWARD_DB_PORT=3306 # (Only if you install with docker-compose. You can leave it 3306) | ||
DB_DATABASE=laravel | ||
DB_DATABASE=mixpost_db | ||
DB_USERNAME=root | ||
DB_PASSWORD= | ||
|
||
# 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) | ||
|
||
#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 | ||
# The disk on which to store added files. Disks: "public", "s3". For "s3" you should fill in the AWS_* credentials below. | ||
MIXPOST_DISK=public | ||
|
||
#Change this only if you know what you are doing | ||
MIXPOST_LOG_CHANNEL=mixpost | ||
# AWS Credentials | ||
AWS_ACCESS_KEY_ID= | ||
AWS_SECRET_ACCESS_KEY= | ||
AWS_DEFAULT_REGION= | ||
AWS_BUCKET= |
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
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.