-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (30 loc) · 1.32 KB
/
Copy path.env.example
File metadata and controls
35 lines (30 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# PostgreSQL (required — start with: docker compose up -d)
DATABASE_URL=postgres://skill_platform:skill_platform@127.0.0.1:15432/skill_platform
# Optional MinIO artifact storage
MINIO_ENABLED=true
MINIO_ENDPOINT=127.0.0.1
MINIO_PORT=9000
MINIO_USE_SSL=false
MINIO_ACCESS_KEY=skill_platform
MINIO_SECRET_KEY=skill_platform_secret
MINIO_BUCKET=skill-artifacts
# Web -> API
NEXT_PUBLIC_API_URL=http://127.0.0.1:3000
# Optional HaluCatch reliability evaluation
# Python 3.8+ is required when enabled. Defaults: enabled, `python` on Windows,
# `python3` on Unix, 30 seconds timeout, and packages/halucatch-1.8.8.
# HALUCATCH_ENABLED=false
# HALUCATCH_PYTHON=python
# HALUCATCH_DIR=
# HALUCATCH_TIMEOUT_MS=30000
# Optional SkillSpector static security review (no LLM)
# Python 3.12+ is required when enabled. `npm run setup` installs skillspector from PyPI
# when available, otherwise clones https://github.com/nvidia/skillspector into
# packages/SkillSpector-main. Defaults: enabled, `python` on Windows, `python3` on Unix,
# 60 seconds timeout, and packages/SkillSpector-main for source checkout fallback.
# SKILLSPECTOR_ENABLED=false
# SKILLSPECTOR_PYTHON=python
# SKILLSPECTOR_DIR=
# SKILLSPECTOR_TIMEOUT_MS=60000
# Optional SKILL.md license field enforcement (MIT-0). Off by default on this platform.
# SKILL_LICENSE_VALIDATION_ENABLED=true