> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vidocsecurity.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GitLab Integration

> GitLab integration is coming soon

<Info>
  GitLab integration is coming soon! We're working on bringing the same seamless experience you love with GitHub to GitLab.
</Info>

## Planned Features

When GitLab integration launches, you'll be able to:

* **Connect GitLab repositories** - Link your GitLab projects to Vidoc
* **Automatic MR scanning** - Scan merge requests automatically
* **MR comments** - Get security findings as MR comments
* **Auto-scan on push** - Trigger scans on default branch updates

## Current Alternatives

While we work on GitLab integration, you can still scan GitLab repositories:

### Using the CLI

1. Clone your GitLab repository locally
2. Install and authenticate the Vidoc CLI
3. Run scans from your local machine

```bash theme={null}
# Install CLI
npm i -g @vidocsecurity/cli

# Authenticate
vidoc login

# Scan
cd your-gitlab-repo
vidoc scan
```

### In GitLab CI/CD

Add Vidoc to your `.gitlab-ci.yml`:

```yaml theme={null}
security-scan:
  image: node:20
  stage: test
  script:
    - npm i -g @vidocsecurity/cli
    - vidoc scan --fail-on high
  variables:
    VIDOC_API_KEY: $VIDOC_API_KEY
```

See [CI/CD Integration](/cli/ci-cd) for detailed setup.

## Stay Updated

Want to be notified when GitLab integration launches?

1. Email us at [contact@vidocsecurity.com](mailto:contact@vidocsecurity.com)
2. Follow us on [Twitter](https://twitter.com/vidocsecurity)
3. Check our [blog](https://blog.vidocsecurity.com) for announcements

## Request Features

Have specific GitLab features you'd like to see? Let us know:

* Email: [contact@vidocsecurity.com](mailto:contact@vidocsecurity.com)
* Feature requests help us prioritize development

## Related Pages

<CardGroup cols={2}>
  <Card title="GitHub Setup" icon="github" href="/github/setup">
    GitHub integration (available now)
  </Card>

  <Card title="CLI Installation" icon="terminal" href="/cli/installation">
    Scan any repo via CLI
  </Card>

  <Card title="CI/CD Integration" icon="gear" href="/cli/ci-cd">
    Add to GitLab CI
  </Card>

  <Card title="Bitbucket" icon="bitbucket" href="/bitbucket/coming-soon">
    Bitbucket integration status
  </Card>
</CardGroup>
