Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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