parse-server-config.json 916 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "databaseURI": "mongodb://localhost:27017/ecommerce_dev",
  3. "appId": "ecommerce-ai-app",
  4. "masterKey": "master-key-change-this-in-production",
  5. "masterKeyIps": ["0.0.0.0/0", "127.0.0.1", "::1"],
  6. "serverURL": "http://localhost:1337/parse",
  7. "port": 1337,
  8. "mountPath": "/parse",
  9. "allowClientClassCreation": true,
  10. "enforcePrivateUsers": false,
  11. "allowCustomObjectId": true,
  12. "enableAnonymousUsers": true,
  13. "enableExpressErrorHandler": true,
  14. "publicServerURL": "http://localhost:1337/parse",
  15. "maxUploadSize": "100mb",
  16. "classLevelPermissions": {
  17. "*": {
  18. "find": {"*": true},
  19. "get": {"*": true},
  20. "create": {"*": true},
  21. "update": {"*": true},
  22. "delete": {"*": true},
  23. "addField": {"*": true}
  24. }
  25. },
  26. "liveQuery": {
  27. "classNames": ["Product", "Order", "ChatSession"],
  28. "redisURL": "redis://localhost:6379"
  29. },
  30. "verbose": true,
  31. "logLevel": "info"
  32. }