Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ For a full command reference, see the [Commands Documentation](docs/COMMANDS.md)
Comprehensive guides are available in the `docs/` directory:

- **[Configuration](docs/CONFIGURATION.md)** - Setup wizard, environment variables, multi-provider profiles, manual configuration
- `CODEMIE_INSECURE=1` — disable SSL verification for self-signed certs or local dev environments (SSL is on by default)
- **[Commands](docs/COMMANDS.md)** - Complete command reference including analytics and workflow commands
- **[Agents](docs/AGENTS.md)** - Detailed information about each agent (Claude Code, Gemini, built-in)
- **[Authentication](docs/AUTHENTICATION.md)** - SSO setup, token management, enterprise authentication
Expand Down
1 change: 1 addition & 0 deletions docs/CONFIGURATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ Environment variables override config file values and are useful for CI/CD, Dock
| `CODEMIE_MODEL` | Model to use | - | `claude-sonnet-4-5-20250929` |
| `CODEMIE_TIMEOUT` | Request timeout in milliseconds | `300000` | `600000` |
| `CODEMIE_DEBUG` | Enable debug logging | `false` | `true` |
| `CODEMIE_INSECURE` | Disable SSL certificate verification (for self-signed certs or local dev only) | `false` | `1` |

#### AI/Run SSO Configuration

Expand Down
2 changes: 1 addition & 1 deletion src/utils/sdk-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export async function getCodemieClient(quiet = false): Promise<CodeMieClient> {
const client = new CodeMieClient({
codemie_api_domain: credentials.apiUrl,
cookies: credentials.cookies,
verify_ssl: false
verify_ssl: process.env.CODEMIE_INSECURE !== '1'
});

logger.debug('CodeMieClient created with cookies', { apiUrl: credentials.apiUrl });
Expand Down
Loading