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

https://github.com/kevindasilvas/mini-kanban

Kanban microservice created using node js, MongoDB, express and docker
https://github.com/kevindasilvas/mini-kanban

docker docker-compose insomnia kanban mini-kanban mongodb node-js nodejs rabbit rabbitmq

Last synced: 3 months ago
JSON representation

Kanban microservice created using node js, MongoDB, express and docker

Awesome Lists containing this project

README

          

# Mini-Kanban
Kanban microservice created using node js, MongoDB, express and docker

About the project:


The idea was to create a project using separate of concerns in a way that the core of the project do not have to be connected to a framework or database, so it would be easy in the future if i wanted to change the framework or the database, because the core of my project will be intact and i wil just have to change the code in a few files. The other challenge of this project was the idea of creating a dockerized application that doesn`t depends on any installed dependencies like databases or node itself.

Initializing the project


Start docker and run the following command in your terminal

```
"docker-compose up -d --build"
```

To acess the application

```
//routes: boards, tasks
"http://localhost:1747/${route}"
```

To access the documentation

```
http://localhost:5000/
```

[Link to access the front-end repository](https://github.com/KevinDaSilvaS/mini-kanban-front-end "kanban front end repository")