Installing wekan
Setup the website
- Request a site here with PaaS Web Application
- Download the OC client here and put the oc binary in your path
- Follow instructions here
- Have a look here too in gutHib
Configure the website
Go to the command line tools page and copy 9with the button) the line that says oc login https://openshift-dev.cern.ch --token=
Setup wekan locally on Ubuntu
Using ubuntu snap:
sudo apt install snapd sudo snap install wekan sudo apt install mongodb-clients # Check here sudo systemctl status snap.wekan.mongodb sudo systemctl status snap.wekan.wekan # Setup the correct address (maybe not needed) sudo snap set wekan root-url="http://localhost:8080" sudo snap set wekan mongodb-port=27017 # Not needed sudo snap disable wekan sudo snap enable wekan # Login http://localhost:8080 # And create the admin user # Check the user in mongo mongo use wekan db.users.find() # Set the mail URL # to smtp://cernmx.cern.ch:25 # in the admin panel or via sudo snap set wekan mail-url='smtp://cernmx.cern.ch:25' # ?! don't know