{% extends "base.html" %}
{% block title %}Connections · lake-sift{% endblock %}
{% block body %}
Connections & environment
Read-only. lake-sift never stores credentials — it inherits them from this server's
environment. Configure Iceberg catalogs in ~/.pyiceberg.yaml, and object-store
(S3) access through the standard AWS environment (AWS_* vars, a shared profile,
or an instance role). This page shows only what is set, never any secret value.
Source adapters
{% for a in env.adapters %}
| {{ a.label }} |
{{ a.detail }} |
{% endfor %}
Object storage (S3 · remote Parquet)
{% for s in env.storage %}
| {{ s.label }} |
{{ s.detail }} |
{% endfor %}
Iceberg catalogs
{% if env.iceberg.catalogs %}
| Name | Type | URI / warehouse |
{% for c in env.iceberg.catalogs %}
| {{ c.name }} |
{{ c.type }} |
{{ c.uri or c.warehouse or '—' }} |
{% endfor %}
{% if env.iceberg.config_path %}
from {{ env.iceberg.config_path }}
{% endif %}
{% else %}
{{ env.iceberg.note or 'No Iceberg catalogs configured.' }}
{% endif %}
Server
| Version | lake-sift {{ env.version }} |
| Run history (SQLite) | {{ env.history_db }} |
{% endblock %}