Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/wilsonwu/apollo-todo-gapi

A Todo List application GraphQL API, based on Apollo Server, GraphQL, OAuth 2 and JWT (No database, store data by files).
https://github.com/wilsonwu/apollo-todo-gapi

apollo graphql jwt oauth todo

Last synced: 23 days ago
JSON representation

A Todo List application GraphQL API, based on Apollo Server, GraphQL, OAuth 2 and JWT (No database, store data by files).

Awesome Lists containing this project

README

        

# intertodo-gapi
A Todo List application GraphQL API, based on Apollo Server, GraphQL, OAuth 2 and JWT (No database, store data by files).
Frontend at: https://github.com/wilsonwu/react-todo

## Features
- User Sign Up
- User Sign In
- Todo List
- Add new Todo item
- Edit Todo item.
- Delete Todo item.
- Mark Todo item as Completed

## Project setup
```
npm install
```

### Run
```
node index.js
```

### For build Docker image
```
docker build . -t intertodo-gapi
```

### Run application in Docker
```
docker run -p 4000:4000 intertodo-gapi
```

### For deploy to Kubernetes
```
kubectl k8s/deployment.yaml
```
```
kubectl k8s/service.yaml
```