Skip to content

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

Notifications You must be signed in to change notification settings

KevinDaSilvaS/Mini-Kanban

Repository files navigation

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