Skip to content

Commit dbf04f3

Browse files
authored
Absolute path is no longer required for cloud code (#6993)
1 parent ccb6c04 commit dbf04f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ var app = express();
214214

215215
var api = new ParseServer({
216216
databaseURI: 'mongodb://localhost:27017/dev', // Connection string for your MongoDB database
217-
cloud: '/home/myApp/cloud/main.js', // Absolute path to your Cloud Code
217+
cloud: './cloud/main.js', // Path to your Cloud Code
218218
appId: 'myAppId',
219219
masterKey: 'myMasterKey', // Keep this key secret!
220220
fileKey: 'optionalFileKey',

0 commit comments

Comments
 (0)