feat: add math engine and puzzle services

This commit is contained in:
2026-08-09 01:52:20 +08:00
parent 6bcff55c4f
commit b99a22fc06
21 changed files with 1011 additions and 1 deletions
+2
View File
@@ -38,6 +38,7 @@ INSTALLED_APPS = [
"latex_lab",
"content",
"engagement",
"toolbox",
"common",
]
@@ -142,6 +143,7 @@ REST_FRAMEWORK = {
"DEFAULT_THROTTLE_RATES": {
"anon": os.getenv("API_ANON_RATE", "120/minute"),
"user": os.getenv("API_USER_RATE", "600/minute"),
"calculator": os.getenv("CALCULATOR_RATE", "30/minute"),
},
}