feat: expand registry ingestion and demo exchange
This commit is contained in:
@@ -198,6 +198,13 @@ TEMPLATES = [
|
||||
|
||||
WSGI_APPLICATION = "core.wsgi.application"
|
||||
|
||||
# Registry archives can legitimately be close to the parser-level 200 MiB limit.
|
||||
# Keep Django's request-body limit slightly higher to account for multipart framing;
|
||||
# uploaded file content itself is still validated by ParserUploadRequestSerializer.
|
||||
DATA_UPLOAD_MAX_MEMORY_SIZE = int(
|
||||
os.getenv("DATA_UPLOAD_MAX_MEMORY_SIZE", str(210 * 1024 * 1024))
|
||||
)
|
||||
|
||||
# Database и Cache определяются в dev.py / production.py
|
||||
|
||||
# =============================================================================
|
||||
@@ -206,6 +213,7 @@ WSGI_APPLICATION = "core.wsgi.application"
|
||||
|
||||
ZAKUPKI_TOKEN = os.getenv("ZAKUPKI_TOKEN", "")
|
||||
SUPERJOB_APP_ID = os.getenv("SUPERJOB_APP_ID", "").strip()
|
||||
HH_USER_AGENT = os.getenv("HH_USER_AGENT", "").strip()
|
||||
FNS_LOCK_TTL_SECONDS = 3600
|
||||
PARSER_PROXIES = [
|
||||
item.strip() for item in os.getenv("PARSER_PROXIES", "").split(",") if item.strip()
|
||||
|
||||
Reference in New Issue
Block a user