Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brittonhayes/warhammer-proto
A gRPC API for Warhammer Age of Sigmar
https://github.com/brittonhayes/warhammer-proto
api buf go grpc kubernetes openapi protobuf tabletop warhammer
Last synced: 3 months ago
JSON representation
A gRPC API for Warhammer Age of Sigmar
- Host: GitHub
- URL: https://github.com/brittonhayes/warhammer-proto
- Owner: brittonhayes
- License: mit
- Created: 2021-10-24T21:43:10.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-25T08:32:47.000Z (almost 2 years ago)
- Last Synced: 2023-07-11T07:24:35.713Z (over 1 year ago)
- Topics: api, buf, go, grpc, kubernetes, openapi, protobuf, tabletop, warhammer
- Language: Go
- Homepage:
- Size: 109 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# Warhammer đĨ
> A gRPC API for Warhammer Age of Sigmar
## Intro âšī¸
> [Skip to Quick Start](https://github.com/brittonhayes/warhammer#quick-start-)
What is this?
- An API for creating, reading, deleting, and updating a database of Warhammer Age of Sigmar entities.
- A set of Protobuf schemas to generate your own gRPC client or server
- A set of OpenAPI specifications to generate your own http client or serverWhy?
Most of the knowledge base for Warhammer Age of Sigmar relies on users digging through official PDF manuals. This makes it hard to efficiently find knowledge about the Warhammer universe for creators and players.
The goal of this repository is to empower the Warhammer community to make their own game companion tools in whatever language they please.
## Quick Start â¨
```shell
# Start the service with Railway
railway run# OR start the service + database with docker-compose
docker-compose up# OR deploy the gRPC service + HTTP REST API + PostgreSQL DB with kubernetes
kubectl apply -f deploy/warhammer.yaml
```## Documentation đ
The Warhammer Age of Sigmar API provides support for protocol buffers via gRPC and http via REST. View the specifications below and generate your own server or client in any language.
âī¸ Protobuf - [View or download on buf.build](https://buf.build/brittonhayes/warhammer/docs)
đ Open API - [View Open API 3 Specification](./proto/gen/openapi/brittonhayes/warhammer/sigmar/v1)
## Deploy đ
Warhammer is deployed with [railway.app](https://railway.app) automatically when a change is merged into the main branch.
```shell
# Manual Deploy
railway up
```## Development âī¸
```shell
# Generate kubernetes manifest
# Generate go code
make build
```