15 lines
447 B
Python
15 lines
447 B
Python
from pathlib import Path
|
|
|
|
from joj3_config_generator.models.common import Memory, Time
|
|
|
|
DEFAULT_CPU_LIMIT = Time("1s")
|
|
DEFAULT_MEMORY_LIMIT = Memory("128m")
|
|
DEFAULT_FILE_LIMIT = Memory("32m")
|
|
|
|
JOJ3_CONFIG_ROOT = Path("/home/tt/.config/joj")
|
|
TEAPOT_CONFIG_ROOT = Path("/home/tt/.config/teapot")
|
|
CACHE_ROOT = Path("/home/tt/.cache")
|
|
JOJ3_LOG_ROOT = CACHE_ROOT / "joj3"
|
|
TEAPOT_LOG_ROOT = CACHE_ROOT
|
|
ACTOR_CSV_PATH = JOJ3_CONFIG_ROOT / "students.csv"
|