Reputation: 788
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
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
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