- MongoDB
- Installation instructions can be found here.
- Redis
- Download an installer for the Windows version by Microsoft Open Tech group and follow the steps
- Check in "Services" that "Redis" is running. By default it runs on port 6379
- Node.js
- Install nvm-windows: instructions
nvm install 6.11
nvm use 6.11
- Running
node -v
should give you "v6.11.x"
- Graphicsmagick
- Download from the "windows" section of their website. Q8 x64 version is suitable for setting up Patches.
- Open a new cmd window and ensure the installation is successful by running
gm help
- Additional setup for building the sse4_crc32 module (optional)
- Download and install Python
- Verify by opening new cmd and running
python --version
- Install Visual Studio version lower than 2017 (with 2017 there's an issue reported). If the version is >2005 use the appropriate version of cmd to get it building.
- Setting up the repo
- Download some nice Git client compatible with your version of Windows (personally I use Git for Windows) and clone the repo
npm install && npm install -g gulp
- Few deprecated modules appear and (if no success in the previous step) sse4_crc32 may fail completely.
Note about MongoDB: For the server I use a cloud-hosted version on mLab. It provides 0.5GB of storage with MongoDB version 3.4.x. MongoDB server used to be easily installable on consumer versions of Windows, but now on their website there's only installer for Windows Server 2008. If you choose similar cloud provider, the connection string mongodb://<user>:<pass>@<host>:<port>/<dbname>
should be set as an environment variable MONGODB
prior to running patches and also some modifications in gridfs-storage.js
are needed in order to support authentication.