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

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.

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
```