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
4 changes: 2 additions & 2 deletions domains/cyber/templates/insights_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ <h1 class="text-2xl font-bold mb-2">Insights</h1>
<p class="text-gray-600 mb-6">Structural anomalies surfaced from the knowledge graph. Not AI speculation — deterministic queries backed by specific data.</p>

{% for section in sections %}
{% if section.items %}
{% if section["items"] %}
<div class="mb-10">
<h2 class="text-xl font-semibold mb-4">{{ section.title }}</h2>
<p class="text-sm text-gray-500 mb-3">{{ section.description }}</p>
Expand All @@ -23,7 +23,7 @@ <h2 class="text-xl font-semibold mb-4">{{ section.title }}</h2>
</tr>
</thead>
<tbody>
{% for item in section.items[:20] %}
{% for item in section["items"][:20] %}
<tr class="border-b border-gray-100 hover:bg-gray-50">
<td class="px-4 py-2">
<a href="{{ item.url }}" class="text-indigo-600 hover:underline">{{ item.label }}</a>
Expand Down
8 changes: 0 additions & 8 deletions render.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,6 @@ services:
sync: false
- key: ANTHROPIC_API_KEY
sync: false
- key: RENDER_DEPLOY_HOOK_URL
sync: false
- key: RENDER_API_KEY
sync: false
- key: UMAMI_DATABASE_URL
sync: false
- key: UMAMI_WEBSITE_ID
Expand Down Expand Up @@ -129,10 +125,6 @@ services:
sync: false
- key: OPENAI_API_KEY
sync: false
- key: RENDER_API_KEY
sync: false
- key: RENDER_SERVICE_ID
sync: false

# Saturday and Sunday cron jobs removed — all work now handled by
# the task queue worker (discover_ai_repos and compute_structural
Expand Down
Loading