Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ak1m1tsu/cat-facts
https://github.com/ak1m1tsu/cat-facts
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/ak1m1tsu/cat-facts
- Owner: ak1m1tsu
- Created: 2022-12-30T07:01:40.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-30T19:34:36.000Z (about 2 years ago)
- Last Synced: 2024-06-20T23:53:45.282Z (7 months ago)
- Language: Go
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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
```