diff --git a/Developing-Wekan-on-Windows.md b/Developing-Wekan-on-Windows.md new file mode 100644 index 0000000..08dabc9 --- /dev/null +++ b/Developing-Wekan-on-Windows.md @@ -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. :) \ No newline at end of file