Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/webix-hub/todo-go


https://github.com/webix-hub/todo-go

Last synced: 12 days ago
JSON representation

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
```