-
Notifications
You must be signed in to change notification settings - Fork 6
feat: add Confluence integration with configurable parameters for doc… #19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
e7c28ac
feat: add Confluence integration with configurable parameters for doc…
a-klos e495cc8
chore: update submodules to latest main
github-actions[bot] 39748d8
feat: enable MinIO feature in Helm chart configuration and remove def…
a-klos d3fccec
Merge branch 'chore/adminfrontend' of github.com:stackitcloud/rag-tem…
a-klos 38b9d91
feat: add pytest configuration and update testing setup across multip…
a-klos 026a2df
Update frontend/libs/i18n/admin/en.json
a-klos 5be7dfb
feat: enhance Confluence upload form with additional input fields and…
a-klos 962fcc2
Merge branch 'chore/adminfrontend' of github.com:stackitcloud/rag-tem…
a-klos 4955d73
Merge branch 'main' into chore/adminfrontend
a-klos File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import sys | ||
import os | ||
from pathlib import Path | ||
|
||
# Add project root and specific directories to Python path | ||
project_root = Path(__file__).parent | ||
sys.path.insert(0, str(project_root)) | ||
sys.path.insert(0, str(project_root / "admin-backend")) | ||
sys.path.insert(0, str(project_root / "rag-backend")) | ||
sys.path.insert(0, str(project_root / "document-extractor")) | ||
|
||
# point at each rag-core library's src folder so their packages (admin_api_lib, rag_core_api, etc.) are importable | ||
lib_root = project_root / "rag-core-library" | ||
for lib in ["admin-api-lib", "rag-core-api", "rag-core-lib", "extractor-api-lib"]: | ||
sys.path.insert(0, str(lib_root / lib / "src")) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes.
Submodule rag-core-library
updated
100 files
Submodule rag-infrastructure
updated
16 files
+1 −0 | .gitignore | |
+85 −54 | README.md | |
+2 −6 | rag/templates/_admin_backend_and_extractor_helpers.tpl | |
+4 −4 | rag/templates/admin-backend/configmap.yaml | |
+2 −4 | rag/templates/admin-backend/deployment.yaml | |
+0 −7 | rag/templates/admin-backend/secrets.yaml | |
+2 −8 | rag/values.yaml | |
+52 −0 | terraform/.gitignore | |
+101 −0 | terraform/README.md | |
+13 −0 | terraform/dns.tf | |
+12 −0 | terraform/main.tf | |
+29 −0 | terraform/object_storage.tf | |
+48 −0 | terraform/postgres.tf | |
+30 −0 | terraform/ske.tf | |
+3 −0 | terraform/terraform.tfvars.example | |
+16 −0 | terraform/variables.tf |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.