1+ # You app name. It is usually equal to the name of your project.
12APP_NAME = ' Mixpost Lite'
3+
4+ # Your application environment. If you are ready for production, set 'production'
25APP_ENV = local
6+
7+ # Is used to encrypt and decrypt sensitive data. Generate it with: 'php artisan key:generate'
38APP_KEY =
9+
10+ # Debug mode. If the environment is in production, we recommend setting it to 'false'
411APP_DEBUG = true
12+
13+ # URL of your application. Important: it is not allowed to be a slash at the end of the url.
514APP_URL = http://localhost
615
16+ # You can define the application port here (Only if you install with docker-compose)
717APP_PORT = 80
18+
19+ # The user ID in your system. You can find it with 'id -u' (Only if you install with docker-compose)
820UID = 1000
9- GID = 1000
1021
11- LOG_CHANNEL = stack
12- LOG_DEPRECATIONS_CHANNEL = null
13- LOG_LEVEL = debug
22+ # The group ID in your system. You can find it with 'id -g' (Only if you install with docker-compose)
23+ GID = 1000
1424
15- DB_CONNECTION = mysql
25+ # Mysql connection setup
26+ DB_CONNECTION = mysql # Change this only if you know what you are doing
1627DB_HOST = 127.0.0.1
1728DB_PORT = 3306
29+ FORWARD_DB_PORT = 3306 # (Only if you install with docker-compose. You can leave it 3306)
1830DB_DATABASE = laravel
1931DB_USERNAME = root
2032DB_PASSWORD =
2133
22- BROADCAST_DRIVER = log
23- CACHE_DRIVER = file
24- FILESYSTEM_DISK = local
25- QUEUE_CONNECTION = redis
26- SESSION_DRIVER = file
27- SESSION_LIFETIME = 120
28-
29- MEMCACHED_HOST = 127.0.0.1
30-
34+ # Redis connection setup
3135REDIS_HOST = 127.0.0.1
3236REDIS_PASSWORD = null
3337REDIS_PORT = 6379
38+ FORWARD_REDIS_PORT = 6379 # (Only if you install with docker-compose. You can leave it 6379)
3439
35- MAIL_MAILER = smtp
36- MAIL_HOST = mailpit
37- MAIL_PORT = 1025
38- MAIL_USERNAME = null
39- MAIL_PASSWORD = null
40- MAIL_ENCRYPTION = null
41- MAIL_FROM_ADDRESS = " hello@example.com"
42- MAIL_FROM_NAME = " ${ APP_NAME } "
43-
44- AWS_ACCESS_KEY_ID =
45- AWS_SECRET_ACCESS_KEY =
46- AWS_DEFAULT_REGION = us-east-1
47- AWS_BUCKET =
48- AWS_USE_PATH_STYLE_ENDPOINT = false
49-
50- PUSHER_APP_ID =
51- PUSHER_APP_KEY =
52- PUSHER_APP_SECRET =
53- PUSHER_HOST =
54- PUSHER_PORT = 443
55- PUSHER_SCHEME = https
56- PUSHER_APP_CLUSTER = mt1
57-
58- VITE_PUSHER_APP_KEY = " ${ PUSHER_APP_KEY } "
59- VITE_PUSHER_HOST = " ${ PUSHER_HOST } "
60- VITE_PUSHER_PORT = " ${ PUSHER_PORT } "
61- VITE_PUSHER_SCHEME = " ${ PUSHER_SCHEME } "
62- VITE_PUSHER_APP_CLUSTER = " ${ PUSHER_APP_CLUSTER } "
40+ # Change this only if you know what you are doing
41+ QUEUE_CONNECTION = redis
6342
43+ # Change this only if you know what you are doing
6444MIXPOST_DISK = mixpost
45+
46+ # Change this only if you know what you are doing
6547MIXPOST_LOG_CHANNEL = mixpost
0 commit comments