ctf-gameserver icon indicating copy to clipboard operation
ctf-gameserver copied to clipboard

Web: Support HTML export

Open F30 opened this issue 7 years ago • 0 comments

After the CTF, you want to keep the website around but not have an (at some point outdated) Django instance running. Instead, it should just be served as static HTML.

I currently use a wget command like this for that purpose:

wget --recursive --domains <year>.faustctf.net --page-requisites https://<year>.faustctf.net/

This works, but is hacky and does not include not linked-to files such as the scoreboard JSON.

Ideally, such functionality could be implemented through Django as a special custom command in manage.py or so.

F30 avatar Jun 15 '18 15:06 F30