mirror of
https://github.com/Kovah/LinkAce.git
synced 2025-01-17 13:18:21 +01:00
03996f8bb3
Replaces SETUP_COMPLETED variable with a database setting. Changes setup to add the setting to the database. Also adds a migration for existing installations.
39 lines
1.2 KiB
Docker
39 lines
1.2 KiB
Docker
## LINKACE CONFIGURATION
|
|
|
|
## Basic app configuration
|
|
COMPOSE_PROJECT_NAME=linkace
|
|
# The environment is usually 'production' but may be changed to 'local' for development
|
|
APP_ENV=local
|
|
# The app key is generated later, please leave it blank
|
|
APP_KEY=someRandomStringWith32Characters
|
|
# Enable the debug more if you are running into issues or while developing
|
|
APP_DEBUG=true
|
|
|
|
## Configuration of the database connection
|
|
## Attention: Those settings are configured during the web setup, please do not modify them now.
|
|
# Set the database driver (mysql, pgsql, sqlsrv)
|
|
DB_CONNECTION=mysql
|
|
# Set the host of your database here
|
|
DB_HOST=db
|
|
# Set the port of your database here
|
|
DB_PORT=3306
|
|
# Set the database name here
|
|
DB_DATABASE=linkace
|
|
# Set both username and password of the user accessing the database
|
|
DB_USERNAME=linkace
|
|
DB_PASSWORD=ChangeThisToASecurePassword!
|
|
|
|
## Redis cache configuration
|
|
# Set the Redis connection here if you want to use it
|
|
REDIS_HOST=redis
|
|
REDIS_PASSWORD=ChangeThisToASecurePassword!
|
|
REDIS_PORT=6379
|
|
|
|
## You probably do not want to change any values blow. Only continue if you know what you are doing.
|
|
# Configure various driver
|
|
SESSION_DRIVER=redis
|
|
LOG_CHANNEL=stack
|
|
BROADCAST_DRIVER=log
|
|
CACHE_DRIVER=redis
|
|
QUEUE_DRIVER=database
|