mirror of
https://github.com/YunoHost-Apps/leantime_ynh.git
synced 2024-09-03 19:36:04 +02:00
fix
This commit is contained in:
parent
9fcd17c1a4
commit
bdb016c60b
2 changed files with 4 additions and 3 deletions
|
@ -6,7 +6,7 @@
|
|||
LEAN_APP_URL = 'https://__DOMAIN__' # Base URL, only needed for subfolder installation
|
||||
LEAN_APP_URL_ROOT = '' # Base of application without trailing slash (used for cookies), e.g, /leantime
|
||||
|
||||
LEAN_DEBUG = 1 # Debug flag
|
||||
LEAN_DEBUG = 0 # Debug flag
|
||||
|
||||
# Database
|
||||
LEAN_DB_HOST = 'localhost' # Database host
|
||||
|
@ -23,9 +23,9 @@ LEAN_SITENAME = 'Leantime' # Name of your site, can be c
|
|||
LEAN_LANGUAGE = '__LANGUAGE__' # Default language
|
||||
LEAN_DEFAULT_TIMEZONE = '__TIMEZONE__' # Set default timezone
|
||||
LEAN_ENABLE_MENU_TYPE = false # Enable to specifiy menu on a project by project basis
|
||||
LEAN_SESSION_PASSWORD = '3evBlq9zdUEuzKvVJHWWx3QzsQhturBApxwcws2m' #Salting sessions. Replace with a strong password
|
||||
LEAN_SESSION_PASSWORD = '__KEY__' #Salting sessions. Replace with a strong password
|
||||
LEAN_SESSION_EXPIRATION = 28800 # How many seconds after inactivity should we logout? 28800seconds = 8hours
|
||||
LEAN_LOG_PATH = null # Default Log Path (including filename), if not set /logs/error.log will be used
|
||||
LEAN_LOG_PATH = null # Default Log Path (including filename), if not set /logs/error.log will be used
|
||||
|
||||
## Look & Feel, these settings are available in the UI and can be overwritten there.
|
||||
LEAN_LOGO_PATH = '/images/logo.svg' # Default logo path, can be changed later
|
||||
|
|
|
@ -10,6 +10,7 @@ source _common.sh
|
|||
source /usr/share/yunohost/helpers
|
||||
|
||||
timezone="$(cat /etc/timezone)"
|
||||
key=$(ynh_string_random --length=18)
|
||||
|
||||
#=================================================
|
||||
# APP "BUILD" (DEPLOYING SOURCES, VENV, COMPILING ETC)
|
||||
|
|
Loading…
Reference in a new issue