scalingo.json 763 B

1234567891011121314151617181920212223242526
  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. "env": {
  7. "PARSE_MOUNT": {
  8. "description": "Configure Parse API route.",
  9. "value": "/parse"
  10. },
  11. "APP_ID": {
  12. "description": "A unique identifier for your app.",
  13. "value": ""
  14. },
  15. "MASTER_KEY": {
  16. "description": "A key that overrides all permissions. Keep this secret.",
  17. "value": ""
  18. },
  19. "DATABASE_URI": {
  20. "description": "Connection string for your database.",
  21. "value": "$SCALINGO_MONGO_URL"
  22. }
  23. },
  24. "addons": ["scalingo-mongodb"]
  25. }