Destroyed Developing Wekan on Windows (markdown)

Lauri Ojansivu 2017-03-02 13:45:42 +02:00
parent c7d3542c42
commit 9db3289fa1

@ -1,34 +0,0 @@
To develop Wekan on windows OS,
Pre-requirement Steps:
- Install MeteorJS https://www.meteor.com/
- Install NodeJS (Optional)
- Install Python 2.7 (Installation through Chocolatey(`choco install python2 -y`) is recomended)
- If you are on windows 7, Install .NET 4.5.1+
- Install Visual C++ 2015 Build Tools. (http://landinghub.visualstudio.com/visual-cpp-build-tools)
- Install Git
From this point, use Git bash to run commands to make sure everything works as is.
- 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.
- open your browser, make changes and see it reflecting real-time.
Here is how it looks like,
```
git clone https://github.com/wekan/wekan
cd wekan
meteor npm install --save xss
meteor
```
![](https://i.imgur.com/aNVBhj5.png)
Now enjoy your development environment of Wekan. :)