```html How It Works | Defphonix

Zero Friction. Total Security.

We designed Defphonix to integrate seamlessly into your existing workflow. No agents to install, no complex configurations. Just drop it in and go.

1. Generate API Key

Log into your Defphonix dashboard and generate a secure, scoped API key. Save this key in your repository's environment variables or secrets manager (like GitHub Secrets).

2. Drop the .yml Script

Add a simple step to your existing CI/CD pipeline. Defphonix works with GitHub Actions, GitLab CI, Bitbucket, and Jenkins.

.github/workflows/security.yml
name: Defphonix Security Scan
on: [push, pull_request]

jobs:
  scan:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Run Defphonix Scanner
        run: |
          curl -X POST https://api.defphonix.shop/v1/scan \
            -H "Authorization: Bearer ${{ secrets.DEFPHONIX_API_KEY }}" \
            -d "repo=$GITHUB_REPOSITORY"

3. Automated Enforcement

On every commit or PR, Defphonix analyzes your code for hardcoded secrets, misconfigurations, and vulnerabilities. If a critical issue is found, the build fails immediately—stopping leaks before they hit production.

Ready to secure your pipeline?

Join elite engineering teams proactively securing their codebases. No monthly fees during our exclusive pre-order phase.

```