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

https://github.com/yashodhanketkar/workloggerapi

Small backend server for daily work log reports.
https://github.com/yashodhanketkar/workloggerapi

gin-gonic golang rest-api

Last synced: 21 days ago
JSON representation

Small backend server for daily work log reports.

Awesome Lists containing this project

README

          

# Worklogger

Simple worklogger helper for daily end of day logging

## Requirements

- Go
- Postgres

## Uses

Create file inside DB folder and paste this code along with correct info

```go
package db

const (
host = ""
port = 0000
user = ""
password = ""
dbname = ""
)
```

Run following commands

```sh
# Init database (only first time)
make

# Run application
make run
```

## License

[MIT](License)