horizontally scalable 📈 multiplayer 👩‍💻 🧑‍💻 chess ♟️ over ssh 🖥️ https://chessh.linux.usu.edu
Go to file
Elizabeth Hunt 7596482be7
move man page label to Bots route rather than BotButton lol
2023-11-20 13:22:33 -07:00
.github/workflows update dependencies and fix discriminator matching on username 2023-09-14 09:38:16 -06:00
buildscripts Update build_server.sh 2023-02-24 23:44:34 -07:00
config be more lax with the ssh message rate limit 2023-10-09 13:29:43 -06:00
front move man page label to Bots route rather than BotButton lol 2023-11-20 13:22:33 -07:00
lib/chessh run formatter 2023-11-20 13:08:12 -07:00
presentation Better README 2023-02-24 15:59:42 -07:00
priv initial prompt 2023-10-04 18:56:35 -06:00
test add health check 2023-10-09 18:21:55 -06:00
.env.example Better README 2023-02-24 15:59:42 -07:00
.formatter.exs Initial commit! 2022-12-19 01:39:10 -07:00
.gitignore Elixir cluster! 2023-01-31 19:07:47 -07:00
.tool-versions Presentation (#17) 2023-02-23 19:52:25 -07:00
Dockerfile Multicast instead of .hosts.erlang 2023-02-01 08:51:20 -07:00
README.md update dependencies and fix discriminator matching on username 2023-09-14 09:38:16 -06:00
mix.exs Move history (#18) 2023-03-13 14:13:11 -06:00
mix.lock update dependencies and fix discriminator matching on username 2023-09-14 09:38:16 -06:00
package-lock.json Web Client (#11) 2023-01-19 14:04:10 -07:00

README.md

CheSSH

CheSSH is a distributed multiplayer implementation of the game of Chess over SSH, written in Elixir, with Discord integrations to deliver alerts when players are looking for opponents, or in games when it is one's turn.

cheSSH demo

Bots

As a user, you can create 2 bot accounts at /bots. These are driven by webhooks.

For an example bot, see chessh example bot.

Usage

Dependencies

  • npm
  • elixir
  • postgresql
  • redis (which you can ignore if you only use the ETS backend for Hammer in config/dev.exs [set by default])

Installation

Do something among the lines of:

git clone https://github.com/Simponic/chessh
cd chessh
asdf install

cp .env.example .env
vim .env # Fill it out mf
chmod 0700 .env
export $(cat .env | xargs)

# In one shell (after filling in your .env), migrate schema and start CheSSH
mix ecto.create
mix ecto.migrate
mix deps.compile

# Install frontend stuff
cd front
npm install

# Generate SSH keys
cd ../priv
./make_keys.sh

# Run the frontend and server concurrently!
cd ..
npm install -g concurrently
concurrently "mix run --no-halt" "cd front && npm start"

Architecture

The process of building the pi cluster is wholly contained in the awful buildscripts, which will individually ssh into separate pi's and build the services locally there as well as update the load balancer pi's configurations for nginx and HAproxy.

More architecture talk of CheSSH can be found in my (albeit kinda cringe) FSLC presentation on Elixir: https://github.com/Simponic/chessh/blob/main/presentation/chessh.org

Environment Variables (mostly optional)

  • REACT_APP_DISCORD_INVITE is the invite link to the discord server with the CheSSH bot
  • REACT_APP_DISCORD_OAUTH is the link (after replacing the GET URL params) that will be used to initiate discord OAUTH from the frontend
  • CLIENT_REDIRECT_AFTER_OAUTH & SERVER_REDIRECT_URI are self-explanatory
  • REACT_APP_SSH_SERVER and REACT_APP_SSH_PORT are used to build the .ssh config given to users on the home page of CheSSH after authentication
  • NEW_GAME_PINGABLE_ROLE_ID is the role id of the role to ping when one is looking for an opponent
  • REMIND_MOVE_CHANNEL_ID is the channel id to create private threads with players for move reminders and other communications
  • NEW_GAME_CHANNEL_ID is similar to the above
  • CLUSTER_NODES is a comma-separated list of nodes accepting connections to connect with libclustre