├── .gitignore ├── .python-version ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── app ├── ccip.py ├── config-sample.py ├── delivery-permission-sample.json ├── error.py ├── import.py ├── models │ ├── __init__.py │ ├── announcement.py │ ├── attendee.py │ └── puzzle.py ├── puzzle-config-sample.json ├── reg-sample.csv ├── scenario-sample.json ├── staff-sample.csv └── webhook.sh ├── docker-compose.yml ├── pyproject.toml └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/README.md -------------------------------------------------------------------------------- /app/ccip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/app/ccip.py -------------------------------------------------------------------------------- /app/config-sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/app/config-sample.py -------------------------------------------------------------------------------- /app/delivery-permission-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/app/delivery-permission-sample.json -------------------------------------------------------------------------------- /app/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/app/error.py -------------------------------------------------------------------------------- /app/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/app/import.py -------------------------------------------------------------------------------- /app/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/app/models/__init__.py -------------------------------------------------------------------------------- /app/models/announcement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/app/models/announcement.py -------------------------------------------------------------------------------- /app/models/attendee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/app/models/attendee.py -------------------------------------------------------------------------------- /app/models/puzzle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/app/models/puzzle.py -------------------------------------------------------------------------------- /app/puzzle-config-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/app/puzzle-config-sample.json -------------------------------------------------------------------------------- /app/reg-sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/app/reg-sample.csv -------------------------------------------------------------------------------- /app/scenario-sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/app/scenario-sample.json -------------------------------------------------------------------------------- /app/staff-sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/app/staff-sample.csv -------------------------------------------------------------------------------- /app/webhook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/app/webhook.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCIP-App/CCIP-Server/HEAD/uv.lock --------------------------------------------------------------------------------