Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 584 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 584 Bytes

Installation

First, create mongo-init.js file like the bellow codes:

db.createUser({
  user: "<user for database which shall be created>",
  pwd: "<password of user>",
  roles: [
    {
      role: "readWrite",
      db: "<database to create>",
    },
  ],
});

Then, you should create a .env file like .env-sample file. (Make sure the database variables match the mongo-init.js file)

Run as Development

docker-compose up

See http://localhost/parse_dashboard.

Create Cloud Codes

Go to cloud dir and run the below code.

yarn
yarn build