-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
24 lines (20 loc) · 821 Bytes
/
.env.example
File metadata and controls
24 lines (20 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copy this file to .env and fill in your values
# Run: cp .env.example .env && echo "APP_UID=$(id -u)" >> .env && echo "APP_GID=$(id -g)" >> .env
# Docker user mapping (must match your host UID/GID to avoid permission issues with volume mounts)
APP_UID=1000
APP_GID=1000
# Host paths for tool installations (defaults shown)
CODEQL_HOME=~/codeql
CODEQL_LSP_MCP_HOME=~/codeql-lsp-mcp
# QL pack paths (version numbers depend on your CodeQL version)
# Find versions with:
# ls ~/codeql/qlpacks/codeql/java-queries/ → use for SECURITY_QLPACK_PATH
# ls ~/codeql/qlpacks/codeql/java-all/ → use for LIBRARY_QLPACK_PATH
# also can configure for other codeql supported languages
SECURITY_QLPACK_PATH=
LIBRARY_QLPACK_PATH=
# API Keys
ANTHROPIC_API_KEY=
CLAUDE_CODE_OAUTH_TOKEN=
GEMINI_API_KEY=
OPENAI_API_KEY=