enhanced diff/review
The traffic-light navigator now has buttons to move to the first (left-most button) or last (right-most button) traffic-light.
Also, if you are in a group-exercise, there is an animal-navigator to move you to different animals.
Note that the [revert] button is now called the [checkout] button. This is because you can checkout (as in git checkout) the files from any traffic-light from any animal (rather than only reverting back to one of your own previous traffic-lights). If you're doing larger exercises this can be useful if you want to 'converge' everyone to the same point.
Have fun!
themes + colour
The [theme?] button toggles between the light and dark themes.
The [colour?] button toggles colour-syntax on/off.
The default is the dark-theme with colour-syntax on.
Click [theme?] to switch to light-theme (colour-syntax remains on).
Click [colour?] to switch colour-syntax off (theme remains light).
Click [theme?] to switch to dark-theme (colour-syntax remains off).
Have fun :-)
Securing Cyber-Dojo with SSL on Google Cloud
By Seb Rose. Cucumber has been running its own Cyber-Dojo instance for several years. Recently, due to changes to the cucumber website, it became necessary to support the HTTPS protocol. This turned out to be quite simple (once Jon fixed a defect we found in Cyber-Dojo’s nginx config), but I thought it might be useful to pull together the steps in one place.
[Big thanks to Jon Jagger, Mike Long, and Jon Skeet for their help getting us up and running]
Google Cloud VM
We operate our Cyber-Dojo instance in a virtual machine (VM) on Google Cloud (other cloud providers are available). While getting https set up, I created and deleted numerous VMs. Here I will outline the process I followed:
- Go to
console.cloud.google.com - Navigate to
Compute Engine | VM Instances - Click
Create Instance - Refer to Google’s help documentation for general guidance. Specific Cyber-Dojo advice is:
- Click
Createand that’s the VM created
Install Cyber-Dojo
From the VM Instances page on Google Cloud, find the VM instance that you have just created and click the SSH link in the Connect column. This will open a terminal window.
Follow the instructions in this blog post to install Cyber-Dojo.
Part of these instructions require you to log out of the terminal and log back in again. This is important!
To log back in, simply click the SSH link again. All of the install instructions below need to be carried out in a terminal window.
Once you’ve installed Cyber-Dojo, follow the instructions to start it up and navigate to it using the External IP address shown in the VM Instance table. Note, you cannot click the IP address link to the left of the SSH link (in the Connect column) since that will prefix the IP address with https:// which is not yet installed. You must use the raw IP address. Cyber-Dojo should now be working correctly on http.
Now bring down your Cyber-Dojo server:
Install nginx
Cyber-Dojo is made up of multiple services, each running in its own Docker container. One of the Docker containers uses nginx to process incoming requests. We could try to get this container to handle HTTPS requests, but that would require us to modify the Docker image. Mike Long suggested a simpler technique.
Mike’s suggestion was to install nginx directly on the VM. This instance of nginx will handle all incoming http and https requests, forwarding them over http to the Cyber-Dojo nginx container. This allows us to support https without making any modifications to any Docker image that ships with Cyber-Dojo.
On Ubuntu 18.04 follow the install instructions on the nginx website.
Now, if you navigate to the External IP address shown in the VM Instance table you should be presented with an nginx holding page, where before you would have seen Cyber-Dojo.
Install an SSL certificate
I used Certbot from the EFF to create and install an SSL certificate. The process is simple and well documented on their website. Follow the instructions to install Cerbot, but DO NOT RUN Certbot YET.
When you run Certbot, it will attempt to verify that the website is accessible via the domain name that certificate references. For this verification to be successful, you will need to ensure that your website URL points to the External IP address shown in the VM Instance table. How you do this depends on who provides your DNS services.
For our instance of Cyber-Dojo, we have a DNS A record for a sub-domain of cucumber.io (so the full domain name looked like, xxxxx.cucumber.io) which resolves to the External IP address shown in the VM Instance table.
Once you have setup your DNS, you can run Certbot from the terminal:
You will be asked for several pieces of information during the process:
- You need to provide the full domain name (not URL) for your website, eg ours looked like
xxxxx.cucumber.io - Select the option to redirect all http requests to https
The whole process should take no longer than a minute and should complete without errors!
The certificate only lasts for 90 days, so you’ll probably want to set it to auto-renew. I created a cron job to do this every 2 months:
- $ sudo crontab -e
- Add the following text to the cron file:
* * * */2 * certbot renew - Save the cron file
Configure nginx
To configure nginx, you’ll need to edit /etc/nginx/sites-available/default
The editors available by default are quite limited. I used nano.
The configuration file (/etc/nginx/sites-available/default) has already been modified by Certbot - and you’ll see comments to that effect throughout it. The change you need to make is to use a location block inside the server block listening on port 443.
So, look for text that reads:
listen [::]:443 ssl ipv6only=on; # managed by Certbot listen 443 ssl; # managed by Certbot
Slightly above these two lines is a short location / { … } block. Replace this location block with the following code:
location / {
proxy_pass http://127.0.0.1:8000;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_max_temp_file_size 0;
client_max_body_size 10m;
client_body_buffer_size 128k;
proxy_connect_timeout 90;
proxy_send_timeout 90;
proxy_read_timeout 90;
proxy_buffer_size 4k;
proxy_buffers 4 32k;
proxy_busy_buffers_size 64k;
proxy_temp_file_write_size 64k;
}
Check it:
If it reports ok, restart the nginx server
The final step
The most important statement in the location block is:
proxy_pass http://127.0.0.1:8000;
This forwards all requests to port 8000, so Cyber-Dojo needs to be listening to requests on port 8000. This is very easy to do. Restart Cyber-Dojo using the following command:
Navigate to the URL that you specified in the DNS (e.g. xxxxx.cucumber.io) and you should now be able to use Cyber-Dojo over https :-)
Notes
-
I chose Ubuntu 18.04 because Cyber-Dojo has been tested on that platform. Other OS images may well work just as well. ↩
-
We use an SSD disk for speed - but this will cost you more than a standard persistent disk. ↩
-
100GB is possibly overkill - you may well be able to operate successfully with a much smaller drive. ↩
New start-point Architecture
Start-points are now docker images rather than docker volumes.
Do an update
On your server, do an update:Bring up a server with named start-point images
When you bring up a cyber-dojo server, you can name start-point docker images.For example, in this command:
You can omit any of these three -- options and it will use a default.
The default --custom image name is cyberdojo/custom
The default --exercises image name is cyberdojo/exercises
The default --languages image name is cyberdojo/languages-common which holds start-points for the more common language+testFrameworks (C#, C++, Java, Javascript, Python).
These three default start-point images were created using, respectively:
Create your own start-point images
The --dir option was one way, in the old architecture, to create your own start-point volume. For example:The --git option was another way, in the old architecure, to create your own start-point volume. For example:
The --list option was the last way, in the old architecture, to create your own start-point volume. For example:
To see more help on the start-point create command:
Create a manifest.json file for each exercise
In the old architecture, each --exercises start-point entry was simply a file called instructions. The name associated with each instructions file (when you set up a practice session) was the name of the directory where it lived (with underscores replaced by spaces). In the new architecture, each --exercises start-point URL must be git cloneable and contain at least one manifest.json file adhering to a subset of the start-point json format:- You must specify only the display_name and visible_filenames entries.
- visible_filenames cannot contain a file called cyber-dojo.sh
Inspect a start-point image
To show (in JSON format) each display_name (eg "C (gcc), assert"), git-repo URL+SHA and image_name.For example:
List all start-point images
In JSON format, by type:Prepare for a start-points re-architecture
The plan is to phase out the old architecture completely in a few months time.
Until then both architectures will work "side by side".
Here's how to try out the new architecture.
Recap: Retiring Architecture
- cyber-dojo stores its start-points as docker volumes.
-
You create three start-point volumes by naming the sources using the --dir, --git, --list options.
For example:$ ./cyber-dojo start-point create tutorials --dir=file:///Users/fred/custom-tutorials $ ./cyber-dojo start-point create tdd --git=https://github.com/org/repo/exercises-tdd.git $ ./cyber-dojo start-point create ruby --list=https://raw.githubusercontent.com/org/repo/master/langs-ruby-urls -
You bring up your cyber-dojo server by naming (up to) three start-point volumes, one for each start-point type.
You can omit any of the three -- settings and it will use its default.
For example:$ ./cyber-dojo up \ --custom=tutorials \ --exercises=tdd \ --languages=ruby
Overview: Incoming Architecture
- cyber-dojo will store it's start-points as docker images.
- The --dir,--git,--list options will not be supported.
-
You will create one start-points image by naming all sources as git-repo-urls in a new bash script.
Again, you can omit any of the three -- settings and it will use its default.
For example:$ ./cyber_dojo_start_points_create.sh \ acme/my-start-points \ --custom \ file:///Users/fred/custom-tutorials \ --exercises \ https://github.com/org/repo/exercises-tdd.git \ --languages \ $(curl --silent https://raw.githubusercontent.com/org/repo/master/langs-ruby-urls) -
You will bring up your cyber-dojo server by also naming the one start-points docker image.
Leave the other three -- settings (all of which are optional) the same as in the retiring architecture.
For example:$ ./cyber-dojo up \ --starter=acme/my-start-points \ --custom=tutorials \ --exercises=tdd \ --languages=ruby
Do an update
On your server, do an update:Install the new bash script
To get detailed help:
Create a manifest.json file for each exercise
In the retiring architecture, each --exercises start-point is simply a file called instructions. The name associated with each instructions file (when you set up a practice session) is the name of the directory where it lives (with underscores replaced by spaces).In the incoming architecture, each -exercises start-point is specified by a manifest.json file. Its format is a subset of the --custom and --languages manifest.json files and has only two entries:
- You must specify a display_name
- You must specify the visible_filenames
- visible_filenames cannot contain a file called cyber-dojo.sh
--dir=DIR details
Suppose you currently create an (exercises) start-point docker-volume named tdd with:--dir=DIR will not be supported.
To use the named DIR as a git-repo-url, DIR must contain a git repo.
--git=URL details
Suppose you currently create a (custom) start-point docker-volume named my-ruby-tutorials with:--git=URL will not be supported.
Simply use the URL as a git-repo-url.
Create a new start-point docker-image named acme/my-start-points containing these (--custom) start-points with:
--list=LIST_URL details
Suppose you currently create a (languages) start-point docker-volume named common-langs with:--list=LIST_URL will not be supported.
Simply use curl to get the URLs inside LIST_URL.
Create a new start-point docker-image named acme/my-start-points containing these (--languages) start-points with:
Summary
- A change to the cyber-dojo start-points architecture is coming.
- To prepare for this change you can, for a while, use either architecture.
- Do a [./cyber-dojo update]
- Install the new bash script, cyber_dojo_start_points_create.sh
- Create a manifest.json file for each exercise.
- Note down all the --dir,--git,--list values you use when creating your three start-point docker volumes.
- Create your new start-point docker image using only git-repo URLs:
- --dir=DIR will not be supported. Create a git repository in DIR. The git-repo-url will be file://DIR
- --git=URL will not be supported. The git-repo-url will be URL.
- --list=LIST_URL will not be supported. Use curl to get the git-repo-urls inside LIST_URL.
- Bring up your cyber-dojo server by also naming the new start-point image.
How to access old practice sessions
It used to store them in a docker data-container.
It now saves them directly to a volume-mounted host directory.
To access to your practice sessions you need to do a one-time port...
SSH into your server and curl the porting script:
Pull the latest docker images for the required services:
Bring down your cyber-dojo server:
Run the script, read what it says, and follow its instructions carefully.
You will be asked to run a couple of one-time-only mkdir and chown commands.
You do not need to create any new users.
Please be patient, the script takes several seconds to initialize.
Once your final [--all] command has completed, update your server:
Finally, bring your server back up:
directory details...
After this update all practice-sessions will be available directly on the host server under the /cyber-dojo dir:
- /cyber-dojo/groups/ holds the group practice sessions by ID.
For example, a group practice session with an ID of 5yv7JT will live at /cyber-dojo/groups/5y/v7/JT/ - /cyber-dojo/katas/ holds the individual practice sessions by ID.
For example, an individual practice session with an ID of 3e9H2W will live at /cyber-dojo/katas/3e/9H/2W/ - The /cyber-dojo dir is volume-mounted into the saver service (uid=19663, gid=65533).
- For example, if an old session with an ID of 733E9E16FC (10 characters long) is ported to a new ID of 5yv7JT (6 characters long) then /porter/mapped-ids/73/3E9E16FC will be a file containing the 6 characters 5yv7JT.
- This mapping is used to provide access to old practice sessions using both their old and their new IDs.
- Access to practice sessions via their old (10 character) IDs is deprecated.
- The /porter dir is volume-mounted into the mapper service (uid=19664, gid=65533).
- The /porter/raised-ids/ dir contains information on practice sessions that raised an exception when their port was attempted.
running your own cyber-dojo server
set up your server and install the cyber-dojo script
Click the link for your operating-system and follow the instructions.bring up your cyber-dojo server
In a terminal, type:Put your cyber-dojo server's IP address into your browser. That's it.







