Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/webix-hub/todo-go
https://github.com/webix-hub/todo-go
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/webix-hub/todo-go
- Owner: webix-hub
- Created: 2022-11-09T11:54:27.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-09T11:56:21.000Z (about 2 years ago)
- Last Synced: 2024-04-09T21:15:12.833Z (9 months ago)
- Language: Go
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Go backend for the ToDo
==================### How to start
```bash
go build
./todo-go
```### DataBase
Can work with MySQL or SQLite ( default )
- following is the config for MySQL:
```yaml
db:
type: mysql
user: root
password: 1
host: localhost
database: todos
```
(you need to create the database (code will init all necessary tables on its own))- following is the config for SQLite:
```yaml
db:
type: sqlite
path: db.sqlite
```