Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 554
Meirion Avatar asked Sep 15 '12 10:09

Meirion


2 Answers

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.

like image 83
Meirion Avatar answered Sep 20 '22 10:09

Meirion


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/

like image 40
Thomas Bouldin Avatar answered Sep 21 '22 10:09

Thomas Bouldin