26 lines
939 B
Markdown
26 lines
939 B
Markdown
|
# Collatz scheme
|
||
|
Contains 4 challenges in total so just add 0, 1, 2, 3 to the name.
|
||
|
Description should always be the same.
|
||
|
|
||
|
## Title
|
||
|
Collatz scheme
|
||
|
|
||
|
## Text
|
||
|
This is a series of challenges where you need to program something in Scheme, but only a small subset of the language is allowed to be used.
|
||
|
More information is given on the website: <TODO address of website:8000>.
|
||
|
Correctly solving one of the challenges will yield a flag. You can try to attack the website itself, however it is not recommend since it contains no vulnerabilities to the best of our knowledge.
|
||
|
|
||
|
## Files
|
||
|
None
|
||
|
|
||
|
## How to deploy
|
||
|
A Dockerfile and a docker-compose is provided that starts the server on port 8000. This port needs to be exposed. The description needs to be filled in so participants can connect to the server. See the TODO.
|
||
|
```
|
||
|
cd src
|
||
|
docker-compose up -d
|
||
|
```
|
||
|
If any changes are made to the source code, don't forget to run
|
||
|
```
|
||
|
docker-compose build
|
||
|
```
|