app.json 849 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "Parse Server Example",
  3. "description": "An example Parse API server using the parse-server module",
  4. "repository": "https://github.com/ParsePlatform/parse-server-example",
  5. "logo": "https://avatars0.githubusercontent.com/u/1294580?v=3&s=200",
  6. "keywords": ["node", "express", "parse"],
  7. "env": {
  8. "PARSER_SERVER_URL": {
  9. "description": "URL to your parse server with http:// or https://",
  10. "required": true
  11. },
  12. "PARSE_MOUNT": {
  13. "description": "Configure Parse API route.",
  14. "value": "/parse"
  15. },
  16. "APP_ID": {
  17. "description": "A unique identifier for your app.",
  18. "value": "myAppId"
  19. },
  20. "MASTER_KEY": {
  21. "description": "A key that overrides all permissions. Keep this secret.",
  22. "value": "myMasterKey"
  23. }
  24. },
  25. "image": "heroku/nodejs",
  26. "addons": ["mongolab"]
  27. }