Setting up your User

Using the Parse Dashboard, we need to create your admin user.

By default, when your API service is running locally, it will be accessible on http://localhost:9000/api. You will also have a Parse dashboard site running at http://localhost:9000/parse.

The Parse dashboard can be a useful development tool.

Parse Dashboard Users

In your API/src/env.json file, use the PARSE_DASHBOARD_USERSenv.json variable to configure your parse dashboard.

PARSE_DASHBOARD_USERS var

Object Array container user, pass key value pairs.

...
"PARSE_DASHBOARD_USERS": [
    {
        "user": "admin",
        "pass": "admin"
    }
],
...

Log In To Parse Dashboard

Visit http://localhost:9000/parse to view the Parse Dashboard login:

Login with username and password specified in PARSE_DASHBOARD_USERS

Create a Parse User

Once logged into Parse, you should be able to manually create an application user for your API. You can use this to assign a role and its associated capabilities

Last updated