Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 507 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 507 Bytes

redclay, a Georgia MUD

because the world desperately needs another mud engine

useful dev commands

# install local dev environment and start a subshell
$ pipenv install --dev
$ pipenv shell
# set up git hooks
$ pre-commit install
# run the tests
$ tox
# run the game
$ python -m redclay
# connect to the game (from another terminal)
$ telnet localhost 6666

probably handy in your (local) .vimrc

augroup localblack
  autocmd BufWritePre *.py execute ':Black'
augroup END