# Accounts

If you wont to sign in, you can try the deault accounts:

* Administrator: username=**admin**, password=**admin**
* User: username=**user**, password=**user**

If you can't use this accounts, try to initialize user's data using:

```
$ yo merlo:init-users
```

**Warning! This command will reset the admin and the user accounts.**

# Enties

To create, remove or edit enties put or edit `.merlo.entities.json` file in application root folder an run: `$ yo merlo:entities` command.

```
$ yo merlo:entities
```

Example of `.merlo.entities.json` content

```json
[
  {
    "name": "Stocks",
    "schema": {
      "code": "String",
      "name": "String",
      "brand": "String",
      "description": "String",
      "quantity": "Number"
    }
  },
  {
    "name": "Contacts",
    "schema": {
      "fullName": "String",
      "phoneNumber": "String",
      "email": "String",
      "address": "String",
      "BirthDate": "Date"
    }
  }
]
```
