<!-- Guide of Setup

Generated by {{generator}} on {{today}},
from a template provided by {{ pkg.name }}.

-->


Setup
-----

Before running an apeman project, you need to do some set up work.


### 01 - Installing apeman CLI

Install [apeman][apeman_url] globally via [npm][npm_url], so that you can use `apeman` command from anywhere.
(This might require `sudo` on certain system)

```bash
# Install apeman as a global module
$ npm install -g apeman
```


### 02 - Checking Prerequisites Filled

Check if prerequisites by Apemanfile.js are full-filled.

```bash
# Check needed commands are available
$ apeman need
```


### 03 - Installing Dependencies

Install dependencies written in `package.json` via [npm][npm_url].

```bash
# Install package dependencies
$ npm install
```

[apeman_url]: https://www.npmjs.com/package/apeman
[npm_url]: https://www.npmjs.com/

