Meirion
Meirion

Reputation: 788

How to install Parse.com 'Cloud Code' on Windows?

Parse.com have released their 'Cloud Code' JavaScript API, but there are no instructions for getting started on Windows.

How do you go about getting up and running in a Windows environment?

https://parse.com/docs/cloud_code_guide

Upvotes: 5

Views: 4324

Answers (2)

Thomas Bouldin
Thomas Bouldin

Reputation: 3725

We released an official version of the command line tools for Windows last week. Check it out at http://blog.parse.com/2012/10/25/parse-command-line-tools-available-for-windows/

Upvotes: 1

Meirion
Meirion

Reputation: 788

This is what I did to get Parse.com Cloud Code running on Windows 8.

  • Install Python 2.7 (parse don't tell you this)

  • Install Git for windows (Msysgit)

  • Run 'Git Bash' as Admin, which will give you a bash style command line.

  • Make sure Python is working in the Git Bash... python

  • From here you can follow the Parse instructions, but remove 'sudo from the command they give you:

    curl -s https://www.parse.com/downloads/cloud_code/installer.sh | /bin/bash

From here it worked for me.

Upvotes: 11

Related Questions