Keywords: Parse - AWS - Technical issue - Credentials
Description:
I am following a tutorial to build an android app. So the app has to connect to the Bitnami Parse server and it needs applicationId, clientKey and server as per the below java function call which I'm supposed to fetch from /opt/bitnami/apps/parse/htdocs/server.js
Parse.initialize(new Parse.Configuration.Builder(getApplicationContext())
.applicationId("")
.clientKey("")
.server("")
.build()
);
But I am unable to find this file
/opt/bitnami/apps/parse/htdocs/server.js
On checking the 'apps' directory itself isn't available within /opt/bitnami. So from where can I take the above required id, key and server names?