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
- Host: GitHub
- URL: https://github.com/kevindasilvas/mini-kanban
- Owner: KevinDaSilvaS
- Created: 2020-10-12T22:23:49.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-13T20:18:44.000Z (about 2 years ago)
- Last Synced: 2025-02-04T12:51:52.440Z (over 1 year ago)
- Topics: docker, docker-compose, insomnia, kanban, mini-kanban, mongodb, node-js, nodejs, rabbit, rabbitmq
- Language: JavaScript
- Homepage:
- Size: 175 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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")