| 1234567891011121314151617181920212223242526272829303132 |
- {
- "databaseURI": "mongodb://localhost:27017/ecommerce_dev",
- "appId": "ecommerce-ai-app",
- "masterKey": "master-key-change-this-in-production",
- "masterKeyIps": ["0.0.0.0/0", "127.0.0.1", "::1"],
- "serverURL": "http://localhost:1337/parse",
- "port": 1337,
- "mountPath": "/parse",
- "allowClientClassCreation": true,
- "enforcePrivateUsers": false,
- "allowCustomObjectId": true,
- "enableAnonymousUsers": true,
- "enableExpressErrorHandler": true,
- "publicServerURL": "http://localhost:1337/parse",
- "maxUploadSize": "100mb",
- "classLevelPermissions": {
- "*": {
- "find": {"*": true},
- "get": {"*": true},
- "create": {"*": true},
- "update": {"*": true},
- "delete": {"*": true},
- "addField": {"*": true}
- }
- },
- "liveQuery": {
- "classNames": ["Product", "Order", "ChatSession"],
- "redisURL": "redis://localhost:6379"
- },
- "verbose": true,
- "logLevel": "info"
- }
|