https://github.com/anucha-tk/fc_go_scratch
https://github.com/anucha-tk/fc_go_scratch
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/anucha-tk/fc_go_scratch
- Owner: anucha-tk
- Created: 2024-04-10T15:22:06.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-20T07:55:12.000Z (over 2 years ago)
- Last Synced: 2024-12-27T01:12:22.060Z (over 1 year ago)
- Language: Go
- Size: 12.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GOLANG SCRATCH
- [GOLANG SCRATCH](#golang-scratch)
- [tech and tools](#tech-and-tools)
- [database](#database)
## tech and tools
- chi router
- cors
- handlerWithJson
- commitlint & linter
- database
- goose
- sqlc
- docker
- auth
- apikey
- relationship
## database
```mermaid.js
erDiagram
users {
id uuid
name text
apikey varchar(64)
created_at timestamp
updated_at timestamp
}
feeds {
id uuid
name text
url text
created_at timestamp
updated_at timestamp
user_id uuid
}
users ||--o{ feeds : contains
```