├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | /config.py 3 | *.swp 4 | *.db 5 | /attachments 6 | /attachments/** 7 | static/js/app.min.js 8 | .virtualenv 9 | lib 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | == Moved == 2 | 3 | This repository has moved to https://github.com/google/ctfscoreboard. 4 | --------------------------------------------------------------------------------