> For the complete documentation index, see [llms.txt](https://freshlytics.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://freshlytics.gitbook.io/docs/development.md).

# Development

Install `docker` and `docker-compose`

Start the containers

```
$ docker-compose up --build
```

Migrate and seed the database

```
$ docker-compose run freshlytics npm run migrate
$ docker-compose run freshlytics npm run seed
```

Optional: seed the data with test values

```
$ docker-compose run freshlytics npm run seed:test
```
