Ecosyste.ms: Awesome

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

https://github.com/iamkumaran/KanbanApp

Kanban App with server and client using Node.js, Javascript, GraphQL, Express, Apollo, Vue, Vuex, Angular
https://github.com/iamkumaran/KanbanApp

angular apollo apollo-angular apollographql css3 docker expressjs graphql html5 javascript kanban-board mongodb mongoose nodejs vue vuex

Last synced: 20 days ago
JSON representation

Kanban App with server and client using Node.js, Javascript, GraphQL, Express, Apollo, Vue, Vuex, Angular

Lists

README

        

# KanbanApp

Kanban Board App built using vue, vuex, angular, graphql, mongodb, mongoose, apollographql, nodejs, expressjs...

## server
Readme: https://github.com/iamkumaran/KanbanApp/tree/master/server

## client
>Developed with Vue.

Readme: https://github.com/iamkumaran/KanbanApp/tree/master/client

## client-angular
>Developed with Angular.

Readme: https://github.com/iamkumaran/KanbanApp/tree/master/client-angular

Note: Not Dockerized

# Docker Instructions

## To run the docker
```
docker-compose up -d

# Kanban App should be running at
http://localhost:8080/
```

## To see the running containers
```
docker ps -q
```

## To stop the running containers
```
docker stop $(docker ps -q)
```

## To remove the containers
```
docker rm $(docker ps -aq)
```

## To view mounted images
```
docker images
```

## To remove images
```
docker rmi # eg: docker rmi 0b970b3b701b
```