{% extends "base.html" %} {% block title %}Add scan · Argus Dashboard{% endblock %} {% block content %}

Add a scan

Upload a report

Generate a JSON report and upload it:

argus scan . -f json -o report.json

Or send it straight from the CLI

Pipe a scan directly into the dashboard — handy for CI:

argus scan . -f json | curl -s -X POST --data-binary @- \
  http://127.0.0.1:8000/api/scans
{% endblock %}