搭建 cyber-dojo: TDD PlayGround

Linux 安装 cyber-dojo

  1. 安装 Docker
  2. setup directory permissions
    cyber-dojo saves the practice sessions to /cyber-dojo
    You need to set the correct permissions for this directory.
    The user-id for the saver service is 19663, and its group-id is 65533.
    In a terminal, type:
$ sudo mkdir /cyber-dojo
$ sudo chown 19663:65533 /cyber-dojo
  1. 下载 cyber-dojo binary
$ curl -O https://raw.githubusercontent.com/cyber-dojo/commander/master/cyber-dojo
$ chmod 700 cyber-dojo

添加 Golang 语言支持

$ ./cyber-dojo up --languages=cyberdojo/languages-start-points-all

参考文档

  • install on linux
  • running-your-own-cyber-dojo-server

你可能感兴趣的:(搭建 cyber-dojo: TDD PlayGround)