Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/greg-1-anderson/crew-rank-server
Server for Crew Rank; keeps track of game records and returns resulting ladder
https://github.com/greg-1-anderson/crew-rank-server
Last synced: 18 days ago
JSON representation
Server for Crew Rank; keeps track of game records and returns resulting ladder
- Host: GitHub
- URL: https://github.com/greg-1-anderson/crew-rank-server
- Owner: greg-1-anderson
- Created: 2021-01-03T23:29:54.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-04T21:19:29.000Z (almost 4 years ago)
- Last Synced: 2024-10-26T06:11:06.633Z (2 months ago)
- Language: Go
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Crew Rank Server
## Running
```
$ make generate
$ make create-non-production-certs
$ make run
```## Sample Query
```
query {
crewRank {
ladder {
name
overall {
games {
ratio
won
lost
total
}
}
imposter {
games {
ratio
won
lost
total
}
}
crewmate {
games {
ratio
won
lost
total
}
}
}
}
}
```