Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: stacklok/codegate
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.23
Choose a base ref
...
head repository: stacklok/codegate
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
Showing with 15,264 additions and 6,821 deletions.
  1. +4 −0 .github/dependabot.yml
  2. +2 −2 .github/workflows/ci.yml
  3. +52 −9 .github/workflows/feature-launcher.yml
  4. +6 −6 .github/workflows/image-build.yml
  5. +7 −7 .github/workflows/image-publish.yml
  6. +4 −2 .github/workflows/import_packages.yml
  7. +4 −3 .github/workflows/integration-tests.yml
  8. +1 −1 .github/workflows/openapi.yml
  9. +1 −1 .github/workflows/security.yml
  10. +1 −0 .gitignore
  11. +7 −1 Dockerfile
  12. +57 −27 README.md
  13. +831 −100 api/openapi.json
  14. +48 −0 docs/debugging_clients.md
  15. +12 −13 docs/development.md
  16. +111 −0 docs/workspaces.md
  17. +65 −0 migrations/versions/2025_02_19_1452-5e5cd2288147_update_matcher_types.py
  18. +50 −0 migrations/versions/2025_03_03_1008-02b710eda156_add_persona_table.py
  19. +50 −0 migrations/versions/2025_03_04_0934-3ec2b4ab569c_migrate_to_glob_pattern.py
  20. +61 −0 migrations/versions/2025_03_05_2126-e4c05d7591a8_add_installation_table.py
  21. +1,562 −87 model_cost_data/model_prices_and_context_window.json
  22. +434 −1,438 poetry.lock
  23. +2 −2 prompts/default.yaml
  24. +18 −19 pyproject.toml
  25. +3 −0 scripts/entrypoint.sh
  26. +43 −8 scripts/import_packages.py
  27. +448 −76 src/codegate/api/v1.py
  28. +67 −9 src/codegate/api/v1_models.py
  29. +28 −31 src/codegate/api/v1_processing.py
  30. +20 −4 src/codegate/cli.py
  31. 0 src/codegate/clients/__init__.py
  32. +1 −1 src/codegate/clients/detector.py
  33. +33 −4 src/codegate/config.py
  34. +598 −89 src/codegate/db/connection.py
  35. +20 −3 src/codegate/db/fim_cache.py
  36. +127 −1 src/codegate/db/models.py
  37. +29 −47 src/codegate/extract_snippets/body_extractor.py
  38. +8 −2 src/codegate/extract_snippets/message_extractor.py
  39. +0 −3 src/codegate/llm_utils/__init__.py
  40. +0 −155 src/codegate/llm_utils/llmclient.py
  41. +27 −252 src/codegate/muxing/adapter.py
  42. +568 −0 src/codegate/muxing/anthropic_mappers.py
  43. +71 −6 src/codegate/muxing/models.py
  44. +342 −0 src/codegate/muxing/ollama_mappers.py
  45. +237 −0 src/codegate/muxing/persona.py
  46. +157 −13 src/codegate/muxing/router.py
  47. +63 −33 src/codegate/muxing/rulematcher.py
  48. +47 −80 src/codegate/pipeline/base.py
  49. +26 −10 src/codegate/pipeline/cli/cli.py
  50. +1 −4 src/codegate/pipeline/cli/commands.py
  51. +84 −62 src/codegate/pipeline/codegate_context_retriever/codegate.py
  52. +53 −66 src/codegate/pipeline/comment/output.py
  53. +7 −7 src/codegate/pipeline/factory.py
  54. +56 −45 src/codegate/pipeline/output.py
  55. +18 −103 src/codegate/pipeline/pii/analyzer.py
  56. +0 −84 src/codegate/pipeline/pii/manager.py
  57. +271 −124 src/codegate/pipeline/pii/pii.py
  58. +0 −111 src/codegate/pipeline/secrets/gatecrypto.py
  59. +0 −117 src/codegate/pipeline/secrets/manager.py
  60. +141 −143 src/codegate/pipeline/secrets/secrets.py
  61. +1 −1 src/codegate/pipeline/secrets/signatures.py
  62. +51 −0 src/codegate/pipeline/sensitive_data/manager.py
  63. +33 −0 src/codegate/pipeline/sensitive_data/session_store.py
  64. +23 −13 src/codegate/pipeline/suspicious_commands/suspicious_commands.py
  65. +28 −27 src/codegate/pipeline/system_prompt/codegate.py
  66. +0 −69 src/codegate/pipeline/systemmsg.py
  67. +0 −54 src/codegate/providers/anthropic/adapter.py
  68. +8 −13 src/codegate/providers/anthropic/completion_handler.py
  69. +71 −18 src/codegate/providers/anthropic/provider.py
  70. +85 −34 src/codegate/providers/base.py
  71. +10 −5 src/codegate/providers/completion/base.py
  72. +45 −23 src/codegate/providers/copilot/pipeline.py
  73. +30 −44 src/codegate/providers/copilot/provider.py
  74. +13 −8 src/codegate/providers/copilot/streaming.py
  75. +48 −9 src/codegate/providers/crud/crud.py
  76. +9 −20 src/codegate/providers/fim_analyzer.py
  77. +0 −5 src/codegate/providers/formatting/__init__.py
  78. +0 −140 src/codegate/providers/formatting/input_pipeline.py
  79. +0 −8 src/codegate/providers/litellmshim/__init__.py
  80. +0 −110 src/codegate/providers/litellmshim/adapter.py
  81. +0 −39 src/codegate/providers/litellmshim/generators.py
  82. +12 −21 src/codegate/providers/litellmshim/litellmshim.py
  83. +112 −56 src/codegate/providers/llamacpp/completion_handler.py
  84. +0 −144 src/codegate/providers/llamacpp/normalizer.py
  85. +46 −13 src/codegate/providers/llamacpp/provider.py
  86. +6 −8 src/codegate/providers/normalizer/base.py
  87. +1 −4 src/codegate/providers/normalizer/completion.py
  88. +0 −206 src/codegate/providers/ollama/adapter.py
  89. +75 −90 src/codegate/providers/ollama/completion_handler.py
  90. +50 −11 src/codegate/providers/ollama/provider.py
  91. +0 −60 src/codegate/providers/openai/adapter.py
  92. +44 −13 src/codegate/providers/openai/provider.py
  93. +70 −30 src/codegate/providers/openrouter/provider.py
  94. +0 −169 src/codegate/providers/vllm/adapter.py
  95. +65 −21 src/codegate/providers/vllm/provider.py
  96. +1 −1 src/codegate/server.py
  97. +8 −3 src/codegate/storage/storage_engine.py
  98. +95 −0 src/codegate/types/anthropic/__init__.py
  99. +214 −0 src/codegate/types/anthropic/_generators.py
  100. +264 −0 src/codegate/types/anthropic/_request_models.py
  101. +263 −0 src/codegate/types/anthropic/_response_models.py
  102. +52 −0 src/codegate/types/common.py
  103. +27 −0 src/codegate/types/generators.py
  104. +49 −0 src/codegate/types/ollama/__init__.py
  105. +115 −0 src/codegate/types/ollama/_generators.py
  106. +254 −0 src/codegate/types/ollama/_request_models.py
  107. +89 −0 src/codegate/types/ollama/_response_models.py
  108. +129 −0 src/codegate/types/openai/__init__.py
  109. +8 −0 src/codegate/types/openai/_copilot.py
  110. +170 −0 src/codegate/types/openai/_generators.py
  111. +140 −0 src/codegate/types/openai/_legacy_models.py
  112. +415 −0 src/codegate/types/openai/_request_models.py
  113. +239 −0 src/codegate/types/openai/_response_models.py
  114. +9 −0 src/codegate/types/openai/_shared_models.py
  115. +103 −0 src/codegate/types/vllm/__init__.py
  116. +21 −0 src/codegate/types/vllm/_response_models.py
  117. +64 −0 src/codegate/updates/client.py
  118. +34 −0 src/codegate/updates/scheduled.py
  119. +147 −64 src/codegate/workspaces/crud.py
  120. BIN static/mux-dark.png
  121. BIN static/mux-light.png
  122. BIN static/prompts-dark.png
  123. BIN static/prompts-light.png
  124. BIN static/workspace-dark.png
  125. BIN static/workspace-light.png
  126. +535 −0 tests/api/test_v1_providers.py
  127. +981 −0 tests/api/test_v1_workspaces.py
  128. +82 −69 tests/extract_snippets/test_body_extractor.py
  129. +6 −2 tests/integration/anthropic/testcases.yaml
  130. +7 −2 tests/integration/integration_tests.py
  131. +2 −0 tests/integration/llamacpp/testcases.yaml
  132. +2 −0 tests/integration/ollama/testcases.yaml
  133. +2 −0 tests/integration/openai/testcases.yaml
  134. +7 −17 tests/integration/openrouter/testcases.yaml
  135. +4 −2 tests/integration/vllm/testcases.yaml
  136. +0 −32 tests/muxing/test_adapter.py
  137. +245 −0 tests/muxing/test_ollama_mappers.py
  138. +490 −0 tests/muxing/test_persona.py
  139. +127 −56 tests/muxing/test_rulematcher.py
  140. +323 −0 tests/pipeline/codegate_context_retriever/test_codegate.py
  141. +11 −86 tests/pipeline/pii/test_analyzer.py
  142. +82 −75 tests/pipeline/pii/test_pi.py
  143. +0 −106 tests/pipeline/pii/test_pii_manager.py
  144. +0 −157 tests/pipeline/secrets/test_gatecrypto.py
  145. +0 −149 tests/pipeline/secrets/test_manager.py
  146. +35 −28 tests/pipeline/secrets/test_secrets.py
  147. +49 −0 tests/pipeline/sensitive_data/test_manager.py
  148. +114 −0 tests/pipeline/sensitive_data/test_session_store.py
  149. +26 −18 tests/pipeline/system_prompt/test_system_prompt.py
  150. +88 −87 tests/pipeline/test_messages_block.py
  151. +47 −26 tests/pipeline/test_output.py
  152. +0 −142 tests/pipeline/test_systemmsg.py
  153. +0 −148 tests/providers/anthropic/test_adapter.py
  154. +0 −82 tests/providers/litellmshim/test_generators.py
  155. +0 −127 tests/providers/litellmshim/test_litellmshim.py
  156. +0 −140 tests/providers/llamacpp/test_normalizer.py
  157. +0 −128 tests/providers/ollama/test_ollama_adapter.py
  158. +53 −26 tests/providers/ollama/test_ollama_completion_handler.py
  159. +10 −4 tests/providers/openrouter/test_openrouter_provider.py
  160. +21 −9 tests/providers/test_fim_analyzer.py
  161. +6 −7 tests/providers/test_registry.py
  162. +0 −103 tests/providers/vllm/test_vllm_adapter.py
  163. +23 −28 tests/test_server.py
  164. +67 −0 tests/test_suspicious_commands.py
  165. +90 −0 tests/types/anthropic/streaming_messages.txt
  166. +69 −0 tests/types/anthropic/streaming_messages_error.txt
  167. +42 −0 tests/types/anthropic/streaming_messages_simple.txt
  168. +406 −0 tests/types/anthropic/test_anthropic.py
  169. +126 −0 tests/types/anthropic/tools_request.json
  170. +47 −0 tests/types/ollama/streaming_generate.txt
  171. +3 −0 tests/types/ollama/streaming_messages.txt
  172. +115 −0 tests/types/ollama/test_ollama.py
  173. +8 −0 tests/types/openai/streaming_messages.txt
  174. +83 −0 tests/types/openai/test_openai.py
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -4,6 +4,10 @@ updates:
directory: "/"
schedule:
interval: "daily"
groups:
otel:
patterns:
- "presidio-*"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ jobs:
run: git lfs pull

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5
with:
python-version: ${{ matrix.python-version }}

@@ -36,7 +36,7 @@ jobs:

- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
61 changes: 52 additions & 9 deletions .github/workflows/feature-launcher.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,67 @@
name: Automate Engineering Feature Release Campaigns

on:
issues:
types: [labeled]

jobs:
notify-discord:
if: github.event.label.name == 'feature-release'
if: github.event.label.name == 'feature-spotlight'
runs-on: ubuntu-latest
steps:
- name: Send Feature Release Notification to Discord
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
SLACK_COMMUNITY_RELEASE_WEBHOOK: ${{ secrets.SLACK_COMMUNITY_RELEASE_WEBHOOK }}
SLACK_COMMUNITY_ENGAGEMENT_WEBHOOK: ${{ secrets.SLACK_COMMUNITY_ENGAGEMENT_WEBHOOK }}
ISSUE_TITLE: ${{ github.event.issue.title }}
ISSUE_BODY: ${{ github.event.issue.body }}
ISSUE_URL: ${{ github.event.issue.html_url }}
run: |
curl -H "Content-Type: application/json" \
-X POST \
-d '{
"content": "**🚀 New Feature Launched!**\n\n🎉 *${{ env.ISSUE_TITLE }}* is now available to try!\n📖 Description: ${{ env.ISSUE_BODY }}\n🔗 [Check it out here](${{ env.ISSUE_URL }})"
}' \
$DISCORD_WEBHOOK
node -e "
const https = require('https');
const discordWebhook = new URL(process.env.DISCORD_WEBHOOK);
const slackCommunityReleaseWebhook = new URL(process.env.SLACK_COMMUNITY_RELEASE_WEBHOOK);
const slackCommunityEngagementWebhook = new URL(process.env.SLACK_COMMUNITY_ENGAGEMENT_WEBHOOK);
const issueTitle = process.env.ISSUE_TITLE;
const issueBody = process.env.ISSUE_BODY;
const issueUrl = process.env.ISSUE_URL;
const discordPayload = {
content: [
'**🚀 ' + issueTitle + ' has been released!**',
'',
'**🌟 Whats new in CodeGate:**',
issueBody,
'',
'We would 🤍 your feedback! 🔗 [Here\'s the GitHub issue](' + issueUrl + ')'
].join('\n')
};
const slackCommunityReleasePayload = {
text: '🚀 ' + issueTitle + ' has been released!\\n\\n 🔗 <' + issueUrl + '|Here\'s the GitHub issue>'
};
const slackCommunityEngagementPayload = {
text: '📢 Feature ' + issueTitle + ' has been released! 🔗 <' + issueUrl + '|Here\'s the GitHub issue> \\n\\n • Reddit Advocacy Group check it out and help us spread the word! \\n\\n • Feature anchors, please engage with folks in the <https://discord.com/channels/1184987096302239844/1342205741926318080|#feature-spotlight> post for our new feature, and follow-up with interested users in <https://discord.com/channels/1184987096302239844/1331415710278221846|#ideas-and-issues> and <https://discord.com/channels/1184987096302239844/1340110387453886515|#codegate-users>'
};
function sendNotification(webhookUrl, payload) {
const req = https.request(webhookUrl, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
}
});
req.on('error', (error) => {
console.error('Error:', error);
process.exit(1);
});
req.write(JSON.stringify(payload));
req.end();
}
sendNotification(discordWebhook, discordPayload);
sendNotification(slackCommunityReleaseWebhook, slackCommunityReleasePayload);
sendNotification(slackCommunityEngagementWebhook, slackCommunityEngagementPayload);
"
12 changes: 6 additions & 6 deletions .github/workflows/image-build.yml
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ permissions:
jobs:
docker-image:
name: Check docker image build
runs-on: ubuntu-latest
runs-on: ${{ inputs.platform == 'linux/arm64' && 'ubuntu-24.04-arm' || 'ubuntu-latest' }}
env:
IMAGE_NAME: stacklok/codegate
IMAGE_TAG: dev
@@ -29,12 +29,12 @@ jobs:
- name: Set up QEMU for cross-platform builds
# Only set up QEMU if the platform is not linux/amd64
if: ${{ inputs.platform != 'linux/amd64' }}
uses: docker/setup-qemu-action@4574d27a4764455b42196d70a065bc6853246a25 # v3
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
- name: Download artifact
id: download-artifact
uses: dawidd6/action-download-artifact@20319c5641d495c8a52e688b7dc5fada6c3a9fbc # v8
uses: dawidd6/action-download-artifact@07ab29fd4a977ae4d2b275087cf67563dfdf0295 # v9
with:
github_token: ${{ github.token }}
workflow: ".github/workflows/import_packages.yml"
@@ -53,7 +53,7 @@ jobs:
git lfs pull
- name: Test build - ${{ inputs.platform }}
id: docker_build
uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v5
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v5
with:
context: .
file: ./Dockerfile
@@ -76,7 +76,7 @@ jobs:
- name: Upload Docker image artifact
# Only upload the image if the build was for linux/amd64, as we only need it for the integration tests
if: ${{ inputs.platform == 'linux/amd64' }}
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: ${{ inputs.artifact-name }}
path: image.tar
14 changes: 7 additions & 7 deletions .github/workflows/image-publish.yml
Original file line number Diff line number Diff line change
@@ -22,23 +22,23 @@ jobs:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up QEMU for cross-platform builds
uses: docker/setup-qemu-action@4574d27a4764455b42196d70a065bc6853246a25 # v3
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
- name: Compute version number
id: version-string
run: |
DATE="$(date +%Y%m%d)"
COMMIT="$(git rev-parse --short HEAD)"
echo "tag=0.$DATE.$GITHUB_RUN_NUMBER-ref.$COMMIT" >> "$GITHUB_OUTPUT"
- name: Login to GHCR
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set container metadata
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5
id: docker-metadata
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
@@ -57,7 +57,7 @@ jobs:
type=semver,pattern=v{{major}}.{{minor}}
- name: Download artifact
id: download-artifact
uses: dawidd6/action-download-artifact@20319c5641d495c8a52e688b7dc5fada6c3a9fbc # v8
uses: dawidd6/action-download-artifact@07ab29fd4a977ae4d2b275087cf67563dfdf0295 # v9
with:
github_token: ${{ github.token }}
workflow: ".github/workflows/import_packages.yml"
@@ -76,7 +76,7 @@ jobs:
git lfs pull
- name: Build and Push Image
id: image-build
uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6
with:
context: .
platforms: linux/amd64,linux/arm64
@@ -96,7 +96,7 @@ jobs:
echo "digest=$(docker inspect --format='{{index .RepoDigests 0}}' ghcr.io/${{ env.IMAGE_NAME }}:${{ steps.version-string.outputs.tag }})" >> "$GITHUB_OUTPUT"
- name: Install cosign
if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@c56c2d3e59e4281cc41dea2217323ba5694b171e # v3.8.0
uses: sigstore/cosign-installer@d7d6bc7722e3daa8354c50bcb52f4837da5e9b6a # v3.8.1
- name: Sign the images with GitHub OIDC Token
env:
DIGEST: ${{ steps.image-build.outputs.digest }}
6 changes: 4 additions & 2 deletions .github/workflows/import_packages.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5
with:
python-version: '3.12'
- name: Install dependencies
@@ -47,6 +47,7 @@ jobs:
MALICIOUS_KEY=$(jq -r '.latest.malicious_packages' manifest.json)
DEPRECATED_KEY=$(jq -r '.latest.deprecated_packages' manifest.json)
ARCHIVED_KEY=$(jq -r '.latest.archived_packages' manifest.json)
VULNERABLE_KEY=$(jq -r '.latest.vulnerable_packages' manifest.json)
echo "Malicious key: $MALICIOUS_KEY"
echo "Deprecated key: $DEPRECATED_KEY"
@@ -58,6 +59,7 @@ jobs:
aws s3 cp s3://codegate-data-prod/$MALICIOUS_KEY /tmp/jsonl-files/malicious.jsonl --region $AWS_REGION
aws s3 cp s3://codegate-data-prod/$DEPRECATED_KEY /tmp/jsonl-files/deprecated.jsonl --region $AWS_REGION
aws s3 cp s3://codegate-data-prod/$ARCHIVED_KEY /tmp/jsonl-files/archived.jsonl --region $AWS_REGION
aws s3 cp s3://codegate-data-prod/$VULNERABLE_KEY /tmp/jsonl-files/vulnerable.jsonl --region $AWS_REGION
- name: Install Poetry
run: |
@@ -76,7 +78,7 @@ jobs:
poetry run python scripts/import_packages.py --jsonl-dir /tmp/jsonl-files --vec-db-path /tmp/sqlite_data/vectordb.db
- name: 'Upload SQLite Vector DB File'
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: sqlite_data
path: /tmp/sqlite_data/vectordb.db
7 changes: 4 additions & 3 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
@@ -53,7 +53,7 @@ jobs:
chmod -R 777 ./codegate_volume
- name: Download the CodeGate container image
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
with:
name: ${{ inputs.artifact-name }}

@@ -80,6 +80,7 @@ jobs:
-e CODEGATE_APP_LOG_LEVEL=$CODEGATE_LOG_LEVEL \
-e CODEGATE_OLLAMA_URL=$LOCAL_OLLAMA_URL \
-e CODEGATE_VLLM_URL=$LOCAL_VLLM_URL \
-e CODEGATE_DEV_ENV=true \
--restart unless-stopped $DOCKER_IMAGE
# Confirm the container started
@@ -135,7 +136,7 @@ jobs:
sudo update-ca-certificates
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5
with:
python-version: ${{ matrix.python-version }}

@@ -148,7 +149,7 @@ jobs:

- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
2 changes: 1 addition & 1 deletion .github/workflows/openapi.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

- name: Set up Python 3.12
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5
uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5
with:
python-version: "3.12"

2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- name: Code Security Scan
uses: aquasecurity/trivy-action@18f2510ee396bbf400402947b394f2dd8c87dbb0 # v0.29.0
uses: aquasecurity/trivy-action@6c175e9c4083a92bbca2f9724c8a5e33bc2d97a5 # v0.30.0
with:
scan-type: 'fs'
scanners: vuln,secret
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -22,6 +22,7 @@ wheels/

# Virtual Environment
venv/
.venv/
env/
ENV/

8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -27,7 +27,7 @@ COPY . /app
RUN sed -i "s/_VERSION =.*/_VERSION = \"${CODEGATE_VERSION}\"/g" /app/src/codegate/__init__.py

# Build the webapp
FROM docker.io/library/node:23-slim@sha256:f498ea1bec900d539ddba9ae881bf5f69d9052fdefc28e50479b85e284fac54c AS webbuilder
FROM docker.io/library/node:23-slim@sha256:b89d748ea010f4d276c9d45c750fa5f371cef3fcc7486f739f07e5aad1b998a8 AS webbuilder



@@ -72,6 +72,7 @@ FROM python:3.12-slim AS runtime
RUN apt-get update && apt-get install -y --no-install-recommends \
libgomp1 \
nginx \
gettext-base \
&& rm -rf /var/lib/apt/lists/*

# Create a non-root user
@@ -81,6 +82,7 @@ RUN useradd -m -u 1000 -r codegate
# Set permissions for user codegate to run nginx
RUN chown -R codegate /var/lib/nginx && \
chown -R codegate /var/log/nginx && \
chown -R codegate /etc/nginx && \
chown -R codegate /run

COPY nginx.conf /etc/nginx/nginx.conf
@@ -100,6 +102,10 @@ COPY --from=builder /app /app

# Copy necessary artifacts from the webbuilder stage
COPY --from=webbuilder /usr/src/webapp/dist /var/www/html
USER root
RUN chown -R codegate /var/www/html
USER codegate

# Expose nginx
EXPOSE 9090

Loading