parse-platformparse-serverparse-android-sdkparse-dashboard

Parse server dashboard login


So, I am new to Android Studio. I'm following an online course step by step. I'm using ParseServer on AWS. I've managed to get my appId, etc. and can connect with a Java SSH Client directly from my browser. My app can successfully store information in the ParseServer, but I can't access the parse dashboard. When I try to it asks me to enter my username and password -- which I don't have.

I've found a file (in bitnami terminal) and I think that I should maybe make myself an account in here?

# /home/bitnami/apps/parse/.forever/config.json


{
  "root": "/opt/bitnami/apps/parse/.forever",
  "pidPath": "/opt/bitnami/apps/parse/.forever/pids",
  "sockPath": "/opt/bitnami/apps/parse/.forever/sock",
  "loglength": 100,
  "logstream": false,
  "columns": [
    "uid",
    "command",
    "script",
    "forever",
    "pid",
    "id",
    "logfile",
    "uptime"
  ]
}

Solution

  • The issue lays with wherever you're instantiating the dashboard. For me, this is inside index.js.
    var dashboard = new ParseDashboard({ "apps": [ { "serverURL": process.env.SERVER_URL, "appId": process.env.APP_ID, "masterKey": process.env.MASTER_KEY, "appName": process.env.APP_NAME, "javascriptKey": process.env.JS_KEY, } ], "users": [ { "user":<username>, "pass":<password> } ], "useEncryptedPasswords": true, //Requires Bcrypt encrypted passwords. Set to false if you want the explicit <password> plain text string to be your password) "trustProxy": 1 });