summaryrefslogtreecommitdiffstats
path: root/releases
diff options
context:
space:
mode:
Diffstat (limited to 'releases')
-rwxr-xr-xreleases/virtualbox/rebuild-wekan.sh4
-rwxr-xr-xreleases/virtualbox/start-wekan.sh14
2 files changed, 16 insertions, 2 deletions
diff --git a/releases/virtualbox/rebuild-wekan.sh b/releases/virtualbox/rebuild-wekan.sh
index e7d55107..ca00f0e2 100755
--- a/releases/virtualbox/rebuild-wekan.sh
+++ b/releases/virtualbox/rebuild-wekan.sh
@@ -4,7 +4,7 @@ echo "Note: If you use other locale than en_US.UTF-8 , you need to additionally
echo " with 'sudo dpkg-reconfigure locales' , so that MongoDB works correctly."
echo " You can still use any other locale as your main locale."
-X64NODE="https://releases.wekan.team/node-v8.11.3-linux-x64.tar.gz"
+X64NODE="https://releases.wekan.team/node-v8.14.0-linux-x64.tar.gz"
function pause(){
read -p "$*"
@@ -25,7 +25,7 @@ do
sudo apt install -y build-essential git curl wget
sudo apt -y install nodejs npm
sudo npm -g install n
- sudo n 8.11.3
+ sudo n 8.14.0
fi
if [ "$(grep -Ei 'debian' /etc/*release)" ]; then
diff --git a/releases/virtualbox/start-wekan.sh b/releases/virtualbox/start-wekan.sh
index 388e3066..2aec8004 100755
--- a/releases/virtualbox/start-wekan.sh
+++ b/releases/virtualbox/start-wekan.sh
@@ -22,6 +22,9 @@
# If you disable Wekan API, Export Board does not work.
export WITH_API='true'
#---------------------------------------------
+ # CORS: Set Access-Control-Allow-Origin header. Example: *
+ #- CORS=*
+ #---------------------------------------------
## Optional: Integration with Matomo https://matomo.org that is installed to your server
## The address of the server where Matomo is hosted:
##export MATOMO_ADDRESS=https://example.com/matomo
@@ -187,6 +190,17 @@
# LDAP_DEFAULT_DOMAIN : The default domain of the ldap it is used to create email if the field is not map correctly with the LDAP_SYNC_USER_DATA_FIELDMAP
# example :
#export LDAP_DEFAULT_DOMAIN=
+ # LOGOUT_WITH_TIMER : Enables or not the option logout with timer
+ # example : LOGOUT_WITH_TIMER=true
+ #- LOGOUT_WITH_TIMER=
+ # LOGOUT_IN : The number of days
+ # example : LOGOUT_IN=1
+ #- LOGOUT_IN=
+ #- LOGOUT_ON_HOURS=
+ # LOGOUT_ON_MINUTES : The number of minutes
+ # example : LOGOUT_ON_MINUTES=55
+ #- LOGOUT_ON_MINUTES=
+
node main.js & >> ~/repos/wekan.log
cd ~/repos
#done