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

https://github.com/ryosukecla/go-todo-app

I made simple todo app for learning go from zero base.
https://github.com/ryosukecla/go-todo-app

Last synced: 5 months ago
JSON representation

I made simple todo app for learning go from zero base.

Awesome Lists containing this project

README

          

# Go todo app
simple todo app for learning go.
no design, just it.

## stack
- react 16.5.2
- go 1.11.1
- scribble: a tiny golang json db

## start server
### mac: prebuild binary
```bash
$ ./go-todo-app
```

### install requirements
```bash
$ sh ./scripts/install.sh
```

### dev
```bash
$ godo dev --watch
$ cd ./client; npm run dev
# go to localhost:3000
```

### build
```bash
$ sh ./scripts/build.sh
$ ./go-todo-app
```