https://github.com/rsales/todo-list-app
📖 Study project using Golang, gRPC, and sqlite3 for create a server API.
https://github.com/rsales/todo-list-app
go grpc grpc-go sqlite3 todolist
Last synced: 3 months ago
JSON representation
📖 Study project using Golang, gRPC, and sqlite3 for create a server API.
- Host: GitHub
- URL: https://github.com/rsales/todo-list-app
- Owner: rsales
- Created: 2024-03-08T19:54:34.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-08T21:53:24.000Z (about 2 years ago)
- Last Synced: 2024-11-23T12:59:43.012Z (over 1 year ago)
- Topics: go, grpc, grpc-go, sqlite3, todolist
- Language: Go
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# todo-list-app
Esse projeto é um estudo para entender o funcionamento do gRPC como API no lado do servidor utilizando a linguagem Golang e o banco de dados sqlite3.
### Comando para gerar o protobufer da API:
```zsh
$ protoc --go_out=internal/pb --go_opt=paths=source_relative --go-grpc_out=internal/pb --go-grpc_opt=paths=source_relative api/api.proto
```
### Comando para rodar o projeto:
```zsh
$ go run ./cmd/server/main.go
```