easyctf-iv-platform/judge/config.py
Michael Zhang 4225cc4dde
Initial.
2018-02-20 22:37:10 -06:00

13 lines
297 B
Python

import os
import pathlib
from typing import Dict
APP_ROOT = pathlib.Path(os.path.dirname(os.path.abspath(__file__)))
CONFINE_PATH = APP_ROOT / 'confine'
COMPILATION_TIME_LIMIT = 10
GRADER_TIME_LIMIT = 10
PARTIAL_JOB_SUBMIT_TIME_THRESHOLD = 2 # Seconds
PARTIAL_JOB_SUBMIT_CASES_THRESHOLD = 10