Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ak1m1tsu/cat-facts


https://github.com/ak1m1tsu/cat-facts

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Cat Facts

It's a microservice that collect facts about cats from [Cat Facts API](https://catfact.ninja) and store them in mongodb

## Quick Start

Run mongodb in docker

```shell
$ docker run --name mongo-storage -p 27017:27017 -d mongo
```

Build and run microservice in docker

```shell
$ docker build --tag catfacts .
$ docker run -p 3000:3000 -d catfacts
```

Or run microservice in your machine

```shell
$ make run
```