app.json 978 B

1234567891011121314151617181920212223242526272829303132
  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. "SERVER_URL": {
  25. "description": "URL of your Heroku instance",
  26. "value": "http://myapp.herokuapp.com/parse"
  27. }
  28. },
  29. "image": "heroku/nodejs",
  30. "addons": ["mongolab"]
  31. }