Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevinmichaelchen/go-sqlboiler-user-api
Small microservice for managing User Accounts with Go and SQLBoiler ORM
https://github.com/kevinmichaelchen/go-sqlboiler-user-api
go grpc protobuf protocol-buffers sql sqlboiler
Last synced: 12 days ago
JSON representation
Small microservice for managing User Accounts with Go and SQLBoiler ORM
- Host: GitHub
- URL: https://github.com/kevinmichaelchen/go-sqlboiler-user-api
- Owner: kevinmichaelchen
- Created: 2021-03-23T19:41:39.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-25T20:27:29.000Z (over 3 years ago)
- Last Synced: 2024-12-08T14:47:30.550Z (15 days ago)
- Topics: go, grpc, protobuf, protocol-buffers, sql, sqlboiler
- Language: Go
- Homepage: https://github.com/kevinmichaelchen/go-sqlboiler-user-api/projects/1
- Size: 132 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# user-api
This project functions as a store for users.The data model and API surface area is very simple.
We use gRPC, Postgres, and sqlboiler as an ORM.
## Getting started
### Running migrations
```
make migrate
```### Auto-generating sqlboiler models
```
make boil
```### Publishing to Docker Hub
```
docker build \
-t kevinmichaelchen/go-sqlboiler-user-api:0.0.1 \
.
docker push kevinmichaelchen/go-sqlboiler-user-api:0.0.1
```