This commit removes the OPC server integration from the Model Manager, including related activities, repositories, metrics, and configuration. It also adds code quality tools such as Ruff (linting/formatting), mypy (type checking), and Bandit (security analysis) along with a validation script and CI/CD integration for automated code validation. The README has been updated to reflect these changes.
26 lines
779 B
Plaintext
26 lines
779 B
Plaintext
POSTGRES_HOST="paradedb-rw.paradedb.svc.cluster.local"
|
|
POSTGRES_PORT="5432"
|
|
POSTGRES_USER="sientia"
|
|
POSTGRES_PASSWORD="password"
|
|
POSTGRES_DBNAME="sientia"
|
|
POSTGRES_MIN_CONNECTIONS="10"
|
|
POSTGRES_MAX_CONNECTIONS="30"
|
|
|
|
MLFLOW_HOST="http://sientia-tracker-mlflow-tracking.sientia-tracker.svc.cluster.local"
|
|
MLFLOW_PORT="80"
|
|
MLFLOW_USERNAME="aignosi"
|
|
MLFLOW_PASSWORD="mlflow_password"
|
|
|
|
LOG_LEVEL="DEBUG"
|
|
HTTP_METRICS_PORT="9090"
|
|
HTTP_SDK_METRICS_PORT="9091"
|
|
PROJECT_NAME="sientia-model-manager"
|
|
|
|
TEMPORAL_HOST="temporal-frontend.temporal.svc.cluster.local:7233"
|
|
TEMPORAL_NAMESPACE="model-manager"
|
|
|
|
MONGODB_USERNAME="mongo_user"
|
|
MONGODB_PASSWORD="mongo_db_password"
|
|
MONGODB_URL="my-release-mongodb.mongodb.svc.cluster.local:27017"
|
|
MONGODB_DATABASE="sientia"
|
|
MONGODB_TTL_INDEX_HOURS="1" |