问题
I am doing migration from my Parse hosted applications to ParseServer running on AWS or Heroku slowly.
The Heroku "guide to deploy to Heroku and MongoLab" uses "Parse-server-example" on GitHub while the ParseServer wiki mentions cloning "Parse-server" instead. In particular, "Parse-server" repository does not contain the "cloud\main.js" file which is the cloud function file.
If I want to run ParseServer locally or on AWS, which one of those two should I use? What are the differences between them?
回答1:
You should clone the "parse-server-example" since it sounds like you need a starter project to run locally. Then you can start adding your existing Parse code to this new project.
The "parse-server" repository contains the source code for the Parse Server npm package, which is used by the "parse-server-example" to run a server.
来源:https://stackoverflow.com/questions/35470157/what-is-the-different-between-parse-server-and-parse-server-example-on-parseplat