Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gitgalaxy/cobol_refractor_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# between high-speed RAM and SQLite3 to prevent OOM crashes.
# ==============================================================================

# galaxyscope:ignore sec_db_hooks
# galaxyscope:ignore sec_db_hooks, sec_io, sec_high_risk_execution

import argparse
import sys
Expand Down
3 changes: 3 additions & 0 deletions gitgalaxy/core/detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
# A copy of the license can be found in the LICENSE file in the root directory
# of this project, or at https://polyformproject.org/licenses/noncommercial/1.0.0/
# ==============================================================================

# galaxyscope:ignore sec_high_risk_execution

import re
import math
import logging
Expand Down
5 changes: 4 additions & 1 deletion gitgalaxy/core/guidestar_lens.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@
# This source code is licensed under the PolyForm Noncommercial License 1.0.0.
# You may not use this file except in compliance with the License.
# A copy of the license can be found in the LICENSE file in the root directory
# of this project, or at [https://polyformproject.org/licenses/noncommercial/1.0.0/](https://polyformproject.org/licenses/noncommercial/1.0.0/)
# of this project, or at https://polyformproject.org/licenses/noncommercial/1.0.0/
# ==============================================================================

# galaxyscope:ignore sec_io, llm_hooks

import re
import os
import json
Expand Down
2 changes: 2 additions & 0 deletions gitgalaxy/core/state_rehydrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
# of this project, or at https://polyformproject.org/licenses/noncommercial/1.0.0/
# ==============================================================================

# galaxyscope:ignore sec_db_hooks, sec_high_risk_execution

import sqlite3
from pathlib import Path
from typing import Dict, Any
Expand Down
4 changes: 2 additions & 2 deletions gitgalaxy/galaxyscope.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# of this project, or at https://polyformproject.org/licenses/noncommercial/1.0.0/
# ==============================================================================

# galaxyscope:ignore sec_high_risk_execution, sec_hardcoded_secrets
# galaxyscope:ignore sec_high_risk_execution, sec_hardcoded_secrets, sec_io, safety_bypasses

import logging
import time
Expand Down Expand Up @@ -1179,7 +1179,7 @@ def execute_pipeline(self, output_file: str = "galaxy.json"):
print(" 🌌 READY FOR VISUALIZATION (100% LOCAL / ZERO UPLOAD)")

print("=" * 75)
print(" 1. Open your browser to: \033[94m\033[4m[https://gitgalaxy.io/](https://gitgalaxy.io/)\033[0m")
print(" 1. Open your browser to: \033[94m\033[4mhttps://gitgalaxy.io/\033[0m")
print(f" 2. Drag and drop '{gpu_output}'")
print("\n * PRIVACY SECURED: Your data never leaves your machine.")
print(" All architectural rendering executes locally in your browser.")
Expand Down
2 changes: 1 addition & 1 deletion gitgalaxy/metrics/chronometer.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# of this project, or at [https://polyformproject.org/licenses/noncommercial/1.0.0/](https://polyformproject.org/licenses/noncommercial/1.0.0/)
# ==============================================================================

# galaxyscope:ignore sec_high_risk_execution
# galaxyscope:ignore sec_high_risk_execution, sec_io, llm_hooks

import os
import subprocess
Expand Down
Loading