Documentation
Get Started
Configuration
Configure QODRYX behavior with a simple configuration file.
Configuration File
Create a qodryx.config.json in your project root:
{
"project": {
"name": "my-app",
"type": "nextjs"
},
"security": {
"enabled": true,
"autoRemediate": false,
"severityThreshold": "medium"
},
"testing": {
"framework": "vitest",
"coverage": true
},
"deployment": {
"provider": "vercel",
"autoTrigger": false
}
}Environment Variables
Configure via environment variables:
QODRYX_API_KEYYour API key for authenticationQODRYX_PROJECT_IDProject ID (auto-detected if linked)QODRYX_LOG_LEVELLogging level: debug, info, warn, error