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.
- Host: GitHub
- URL: https://github.com/ryosukecla/go-todo-app
- Owner: RyosukeCla
- Created: 2018-10-18T13:52:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-18T21:08:46.000Z (over 7 years ago)
- Last Synced: 2025-05-26T04:10:51.588Z (8 months ago)
- Language: Go
- Homepage:
- Size: 14.2 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```