Skip to content

Install Wekan from source on Windows

Abu Taher edited this page Mar 3, 2017 · 32 revisions

Setup required dependencies

Requirements:

  • Install MeteorJS
  • Install NodeJS (Optional but recommended)
  • Install Python 2.7 (Installation through Chocolatey(choco install python2 -y) is recomended)
  • If you are on windows 7, Install .NET 4.5.1+
  • MUST MAKE SURE TO Install Visual C++ 2015 Build Tools, select custom and check all boxes to install all required dependencies. If there are no custom option, you have got the wrong version. It's much better than installing whole visual studio.
  • Install Git
  • Restart Windows (Optional but recommended)

From this point, it's advised to use Git bash to run commands to make sure everything works as is, but if you had trouble accessing meteor or npm commands via Git bash, windows CMD will most likely work without any problem.

Inside the Git Bash, run these commands:

npm config -g set msvs_version 2015
meteor npm config -g set msvs_version 2015

Running Wekan

  • Clone the repo (https://github.com/wekan/wekan)
  • Browse the wekan directory and run meteor,
  • If you see any error regarding xss, do meteor npm i --save xss to install xss.
  • Set the Environment variables, or create a .env file with the following data.
  • open your browser, make changes and see it reflecting real-time.

Example of setting environment variables

SET MONGO_URL=mongodb://127.0.0.1:27017/wekan
SET ROOT_URL=http://127.0.0.1/
SET MAIL_URL=smtp://user:pass@mailserver.example.com:25/
SET MAIL_FROM=admin@example.com
SET PORT=8081

Example contents of .env file

MONGO_URL=mongodb://127.0.0.1:27017/wekan
ROOT_URL=http://127.0.0.1/
MAIL_URL=smtp://user:pass@mailserver.example.com:25/
MAIL_FROM=admin@example.com
PORT=8081

Overview,

Here is how it looks like,

git clone https://github.com/wekan/wekan
cd wekan
<SET ENV OR CREATE .env FILE>
meteor npm install --save xss
meteor

FAQ

I am getting Error: Cannot find module 'fibers' related problem.

Make sure to run the command meteor instead of node.

Wekan

General

Fake: Not WeKan kanban

Security

Scaling

Migrating

Support priorities for new features and bugfixes

  1. Commercial Support
  2. Community Support
  3. Debugging

Backup

Repair

Themes

Markdown Syntax

Login Auth

Metrics, Logs, Stats

Integrations

Time

Features

Email

Required Settings

Download

Webservers

REST API Docs

REST API issue

REST API client code

Webhooks

Case Studies

Development

Issues

Clone this wiki locally