Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bobymcbobs/todo-list-etcd
A todo list app written with etcd as a backend
https://github.com/bobymcbobs/todo-list-etcd
Last synced: about 1 month ago
JSON representation
A todo list app written with etcd as a backend
- Host: GitHub
- URL: https://github.com/bobymcbobs/todo-list-etcd
- Owner: BobyMCbobs
- License: agpl-3.0
- Created: 2023-07-30T00:40:29.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-18T05:42:53.000Z (over 1 year ago)
- Last Synced: 2023-08-18T06:59:10.782Z (over 1 year ago)
- Language: Go
- Size: 2.6 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
#+title: todo list app
* Goal
build a todo list all using etcd as the backend* Learnings
I've documented my learnings: [[./learnings.org][./learnings.org]]* Development
Run /etcd/ locally with
#+begin_src shell
etcd
#+end_srcBring up the backend
#+begin_src shell
go run .
#+end_srcVisit [[http://localhost:8080][localhost:8080]]
* database structure
#+begin_src
/list
/list/ID
/item
/item/LISTID
/item/LISTID/ID
#+end_src* License
Copyright 2023 Caleb Woodbine.
This project is licensed under the [[http://www.gnu.org/licenses/agpl-3.0.html][AGPL-3.0]] and is [[https://www.gnu.org/philosophy/free-sw.en.html][Free Software]].
This program comes with absolutely no warranty.