Development of Wekan in little steps.

Abu Taher 2017-03-02 05:19:40 +06:00
parent 95aed92ebe
commit b5b9da3bf0

@ -0,0 +1,32 @@
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
```
Now enjoy your development environment of Wekan. :)