From dbf04f381caab5a53266f1d0456a9bb0909ff1ee Mon Sep 17 00:00:00 2001 From: Gunnar Oledal Date: Thu, 5 Nov 2020 17:55:42 +0100 Subject: [PATCH] Absolute path is no longer required for cloud code (#6993) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bf701ad4..b500230c 100644 --- a/README.md +++ b/README.md @@ -214,7 +214,7 @@ var app = express(); var api = new ParseServer({ databaseURI: 'mongodb://localhost:27017/dev', // Connection string for your MongoDB database - cloud: '/home/myApp/cloud/main.js', // Absolute path to your Cloud Code + cloud: './cloud/main.js', // Path to your Cloud Code appId: 'myAppId', masterKey: 'myMasterKey', // Keep this key secret! fileKey: 'optionalFileKey',