# Backend Configuration PORT=3001 API_HOST=localhost CORS_ORIGINS=http://localhost:3000 # NVD API Key (optional - increases rate limit from 5 to 50 requests per 30s) # Request one at https://nvd.nist.gov/developers/request-an-api-key NVD_API_KEY= # Ivanti / RiskSense API (platform4.risksense.com) # API key from your profile settings — does not expire like session cookies IVANTI_API_KEY= IVANTI_CLIENT_ID=1550 IVANTI_FIRST_NAME= IVANTI_LAST_NAME= # Set to true if behind Charter's SSL inspection proxy (replicates Python verify=False) IVANTI_SKIP_TLS=false # Atlas InfoSec API (atlas-infosec.caas.charterlab.com) # Service account credentials for Basic Auth — used to sync and manage action plans ATLAS_API_URL= ATLAS_API_USER= ATLAS_API_PASS= # Set to true if behind Charter's SSL inspection proxy (disables TLS cert verification) ATLAS_SKIP_TLS=false # Jira Data Center REST API # VPN or Charter Network connection required for all Jira instances. # Service accounts use Basic Auth (JIRA_API_USER + JIRA_API_TOKEN). # PATs require ATLSUP approval and naming convention: Function - Team - ATLSUP-XXXXX # Rate limits: 1440 requests/day, burst of 60/minute. JIRA_BASE_URL= JIRA_AUTH_METHOD=basic # Basic Auth — service account credentials JIRA_API_USER= JIRA_API_TOKEN= # PAT Auth — set JIRA_AUTH_METHOD=pat to use JIRA_PAT= # Default project key and issue type for creating issues from the dashboard JIRA_PROJECT_KEY= JIRA_ISSUE_TYPE=Task # Set to true if behind Charter's SSL inspection proxy JIRA_SKIP_TLS=false