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.
- Host: GitHub
- URL: https://github.com/yashodhanketkar/workloggerapi
- Owner: yashodhanketkar
- License: mit
- Created: 2023-11-25T14:06:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-11T08:48:50.000Z (over 1 year ago)
- Last Synced: 2025-03-11T09:37:07.695Z (over 1 year ago)
- Topics: gin-gonic, golang, rest-api
- Language: Go
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: License
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)