Skip to content

xis/game

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Game

This is a simple game service that is used to authenticate users, get the leaderboard and submit user scores.

  1. Game
  2. Actions in the Service
    1. Login
    2. Register
    3. Get Leaderboard
    4. Submit User Score
  3. Running the Service
    1. Clone the repository
      1. Using SSH
      2. Using HTTPS
    2. Install dependencies
    3. Prepare the environment
    4. Run the service

Actions in the Service

You can access these actions using gRPC. All client and server code are generated at https://github.com/xis/game/tree/main/internal/proto.

1. Login

The login action is used to authenticate the user. It returns a JWT token that is used to authorize the user in the other actions.

2. Register

The register action is used to create a new user.

3. Get Leaderboard

The get leaderboard action is used to get the latest leaderboard of the game.

4. Submit User Score

The submit user score action is used to submit the user score to the game. Triggered when a match is finished. If the user score is higher than the previous score, the user score is updated. If not the user score is not updated.

Running the Service

1. Clone the repository

Using SSH

git clone git@github.com:xis/game.git

Using HTTPS

git clone https://github.com/xis/game.git

2. Install dependencies

go mod download

3. Prepare the environment

You can find the required environment variables in the .env.example file.

3. Run the service

go run cmd/main.go

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages