Reputation: 847
I am using parse javascript cloud code on windows.
I am following steps given here https://parse.com/apps/quickstart#cloud_code/windows
So far I am able to create directory structure using parse new
. Which looks like:
CloudCodeDemo
-config/
global.json
-cloud/
main.js
-public/
index.html
Then I ran parse deploy
in CloudCodeDemo directory but is shows parse is not recognized as an internal or external command
EDIT:
I followed instructions:
Copy both exe files to C:\Windows\SysWOW64
Open PowerShell (x86)in administrator mode
Type .\ParseConsole.exe
But now I am facing this issue when I type .\ParseConsole.exe
in power shell. below is the screen shot.
Upvotes: 1
Views: 653
Reputation: 938
I just copied/installed(CTRL+C->CTRL+V) parse.exe from the download page into C:\Windows\System32 and then I could use the parse commands trough my Git CMD.
Hope this will help others.
Upvotes: 3
Reputation: 433
you have to install on parse.exe file in the following directory C:\Windows\ System32 so you can recognize commands parse
Upvotes: 3
Reputation: 1
Alright, none of the comment above has given the reason for the error you keep getting, however the solution without switching to Powershell is to edit your "environment variables" from "Advance System Settings" by adding "PATH" as the variable name and using the directory where your parse.exe is located as the variable value.
Upvotes: -1
Reputation: 1945
From the comments I came to know that you don't have the Parse command line tool. It is clearly mentioned on the Parse Docs that you must download and install the tool.
Have a look at this article. It also contains the link from where to download. Parse Blog
Upvotes: 0