From ab4b65d5bfe56a6445059c5730be248b06341f4a Mon Sep 17 00:00:00 2001 From: Gunnar Oledal Date: Thu, 5 Nov 2020 11:45:55 +0100 Subject: [PATCH] Absolute path is no longer required for cloud code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bf701ad41a..b500230c13 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',