https://github.com/webix-hub/todo-go
https://github.com/webix-hub/todo-go
Last synced: about 14 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/webix-hub/todo-go
- Owner: webix-hub
- Created: 2022-11-09T11:54:27.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-09T11:56:21.000Z (over 2 years ago)
- Last Synced: 2025-02-05T08:28:17.823Z (5 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
```