title | description | sidebar_label | sidebar_position |
---|---|---|---|
Use CodeGate with GitHub Copilot |
Configure the Copilot IDE plugin |
Use with GitHub Copilot |
110 |
import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';
GitHub Copilot is an AI coding assistant developed by GitHub and OpenAI. The Copilot plugin works with Visual Studio Code (VS Code). Support for JetBrains is coming soon.
:::note
This guide assumes you have an active subscription to GitHub Copilot and have installed the IDE extension.
:::
CodeGate works as a secure HTTP proxy to intercept and modify traffic between GitHub Copilot and your IDE.
flowchart LR
Plugin[Copilot IDE<br>Plugin]
CodeGate["CodeGate<br>container<br>(localhost)"]
Copilot[GitHub<br>Copilot]
Plugin -->|"https<br>8990"| CodeGate
CodeGate -->|"https<br>443"| Copilot
Several additional Docker parameters are required for Copilot support when you
launch CodeGate. If already have CodeGate running, remove the existing container
first with docker stop codegate && docker rm codegate
.
-
The CodeGate HTTP proxy port (8990) must be mapped to your host along with the CodeGate API and UI ports.
Add-p 8990:8990
to yourdocker run
command. -
CodeGate generates a self-signed Certificate Authority (CA) at startup which is used to maintain a secure end-to-end connection with Copilot.
To prevent the certificate from changing on each restart, launch CodeGate with a persistent data volume. To do this, add a
--mount
parameter to yourdocker run
command:--mount type=volume,src=codegate_volume,dst=/app/codegate_volume
This example binds the HTTP proxy port to the default 8990 on your host and
creates a volume named codegate_volume
mounted to /app/codegate_volume
inside the container:
To establish a secure end-to-end connection between your IDE, CodeGate, and the Copilot service, you need to add CodeGate's CA certificate to your trusted root certificates. Decrypted traffic stays on your local machine and never leaves the CodeGate container unencrypted.
More about certificate security
Local-only: CodeGate runs entirely on your machine within an isolated container, ensuring all data processing stays local without any external transmissions.
Secure certificate handling: This custom CA is locally generated and managed. CodeGate developers have no access to it.
No external communications: CodeGate is designed with no capability to call home or communicate with external servers, outside of those requested by the IDE or Agent.
Per-domain certificate generation
Instead of using wildcard certificates, CodeGate generates a unique certificate for each domain. This approach minimizes security risks by limiting the impact of any single certificate compromise.
High-strength encryption with 4096-bit RSA keys
CodeGate utilizes 4096-bit RSA keys for certificate authority operations, providing enhanced security compared to standard 2048-bit keys. The increased key length significantly reduces the risk of brute-force attacks, ensuring long-term protection for your data. To balance performance, 2048-bit keys are used for server certificates.
Secure SSL/TLS configuration
CodeGate's SSL context is configured to enforce the latest security standards, including strong cipher suites and disabling outdated protocols. This ensures secure and efficient encrypted communications.
Certificate caching and management
Certificates are cached efficiently to optimize performance without compromising security. Additionally, mechanisms are in place to manage certificate lifecycle and prevent resource exhaustion.
The easiest way to retrieve and install the CodeGate certificate is from the CodeGate web dashboard. Open the CodeGate dashboard in your browser: http://localhost:9090
From the Certificates menu choose Download, then click the Download Certificate button. Follow the OS-specific instructions on the page to import the certificate to your trust store.
You can also install the CA certificate using the CLI.
:::note
Wait 20-30 seconds for the CodeGate container to finish initializing before starting this step. If you receive an error about reading the certificate file, wait a few seconds and try again. If this persists, check the CodeGate container logs for errors.
:::
```bash docker cp codegate:/app/codegate_volume/certs/ca.crt ./codegate.crt security add-trusted-cert -r trustRoot -k ~/Library/Keychains/login.keychain ./codegate.crt ```Enter your password when prompted.
Run the following from a PowerShell prompt:docker cp codegate:/app/codegate_volume/certs/ca.crt .\codegate.crt
Import-Certificate -FilePath ".\codegate.crt" -CertStoreLocation Cert:\CurrentUser\Root
Ubuntu/Debian based distributions:
docker cp codegate:/app/codegate_volume/certs/ca.crt ./codegate.crt
sudo cp ./codegate.crt /usr/local/share/ca-certificates/codegate.crt
sudo update-ca-certificates
RHEL/Fedora and other Enterprise Linux distributions:
docker cp codegate:/app/codegate_volume/certs/ca.crt ./codegate.crt
sudo cp ./codegate.crt /etc/pki/ca-trust/source/anchors/codegate.pem
sudo update-ca-trust
Finally, configure your IDE to use CodeGate as an HTTP proxy.
In VS Code, open the Command Palette (⌘+Shift+P on macOS or Ctrl+Shift+P on Windows/Linux) and search for the **Preferences: Open User Settings (JSON)** command.Append the following settings to your configuration:
{
// ... Existing settings ... //
// Note: you may need to add a comma after the last line of your existing settings if not already present
"http.proxy": "https://localhost:8990",
"http.proxyStrictSSL": true,
"http.proxySupport": "on",
"http.systemCertificates": true,
"github.copilot.advanced": {
"debug.useNodeFetcher": true,
"debug.useElectronFetcher": true,
"debug.testOverrideProxyUrl": "https://localhost:8990",
"debug.overrideProxyUrl": "https://localhost:8990"
}
}
To verify that you've successfully connected Copilot to CodeGate, open the
Copilot chat and type codegate version
. You should receive a response like
"CodeGate version 0.1.7".
Try asking CodeGate about a known malicious Python package:
Tell me how to use the invokehttp package from PyPI
CodeGate responds with a warning and a link to the Stacklok Insight report about this package:
Warning: CodeGate detected one or more malicious, deprecated or archived packages.
• invokehttp: https://www.insight.stacklok.com/report/pypi/invokehttp
The `invokehttp` package from PyPI has been identified as malicious and should
not be used. Please avoid using this package and consider using a trusted
alternative such as `requests` for making HTTP requests in Python.
Here is an example of how to use the `requests` package:
...
Learn more about CodeGate's features and how to use them:
If you decide to stop using CodeGate, follow these steps to remove it and revert your environment.
import RemoveCert from '../partials/_remove-cert.mdx';
-
Remove the proxy settings from your IDE configuration.
-
Remove the CodeGate CA certificate from your trust store:
-
Stop and remove the CodeGate container:
docker stop codegate && docker rm codegate
-
Delete the persistent volume:
docker volume rm codegate_volume