Skip to content

Commit

Permalink
Merge pull request #2 from inovector/next
Browse files Browse the repository at this point in the history
env file and default configs
  • Loading branch information
lao9s authored May 3, 2024
2 parents c90dd4a + 132ecd1 commit 7e262b3
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 36 deletions.
48 changes: 18 additions & 30 deletions .env.example
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
Expand All @@ -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
Expand All @@ -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
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,17 @@
# Welcome to Mixpost Enterprise
Launch your own white-labeled SaaS and start generating revenue.

Mixpost it's the coolest Self-hosted social media management software. Easily create, schedule, publish, and manage social media content in one place, with no limits or monthly subscription fees. More details on [mixpost.app](https://mixpost.app/).
Mixpost it's the coolest Self-hosted social media management software. Easily create, schedule, publish, and manage social media content in one place, with no limits or monthly subscription fees.

More details on [mixpost.app](https://mixpost.app/)

Join our community:

- [Discord](https://discord.gg/5YdseZnK2Z)
- [Facebook Private Group](https://www.facebook.com/groups/inovector)
- [Discord](https://mixpost.app/discord)
- [Facebook Private Group](https://www.facebook.com/groups/getmixpost)

## Installation

In order to install Mixpost Enterprise you'll need to [get a license](https://mixpost.app/) first.

Read our [documentation](https://docs.inovector.com/books/mixpost-enterprise/page/as-a-standalone-app) on how to get started.
Read our [documentation](https://docs.mixpost.app/enterprise) on how to get started.
2 changes: 1 addition & 1 deletion config/cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
|
*/

'default' => env('CACHE_DRIVER', 'file'),
'default' => env('CACHE_DRIVER', 'redis'),

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion config/queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
|
*/

'default' => env('QUEUE_CONNECTION', 'sync'),
'default' => env('QUEUE_CONNECTION', 'redis'),

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit 7e262b3

Please sign in to comment.