Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 626 Bytes

README.md

File metadata and controls

36 lines (26 loc) · 626 Bytes

The backend for SlugQuest

Running the server

The server can be compiled into an executable and ran locally:

# Compile into an executable
go build -o server
./server

Nix

An easy way to develop and run. Install from here.

Set up flakes with:

mkdir ~/.config/nix
echo "experimental-features = nix-command flakes" > ~/.config/nix/nix.conf

Commands:

# Get a development shell
nix develop

# Build the program
nix build

# Run the program
nix run

Resources