https://github.com/tupizz/ask-me-anything-golang
Websockets and REST endpoints
https://github.com/tupizz/ask-me-anything-golang
golang rest webhook websockets
Last synced: 2 months ago
JSON representation
Websockets and REST endpoints
- Host: GitHub
- URL: https://github.com/tupizz/ask-me-anything-golang
- Owner: tupizz
- Created: 2024-08-07T21:43:31.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-08-08T02:24:11.000Z (10 months ago)
- Last Synced: 2025-02-09T14:47:14.654Z (4 months ago)
- Topics: golang, rest, webhook, websockets
- Language: Go
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Generating from scratch
```
go generate ./...
```### Generating migrations
```
go run ./cmd/tools/terndotenv/main.go
```### Creating new Migration
```
tern new --migrations ./internal/store/pgstore/migrations update_messages_table_message_column
```### Generating code with `sqlc`
```
sqlc generate -f ./internal/store/pgstore/sqlc.yaml
```