| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
SectorMap is a local-first archive browser for datasets. This release bundle packages the web app only: the cinematic Main Operations / Galaxy View interface, the Manage dashboard, SQLite-backed search, export, and multi-database management.
This bundle does not include the iOS app and does not ship with a live dataset.
The published web bundle is runtime-offline:
pub-release/
├── app/
│ ├── server.py
│ ├── static/
│ │ └── assets/
│ └── data/
├── scripts/
│ └── import_csv.py
├── docs/assets/
├── Dockerfile
├── docker-compose.yml
├── requirements.txt
└── README.md
cd pub-release
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
uvicorn app.server:app --host 0.0.0.0 --port 3737Open:
On first startup, SectorMap creates an empty default database automatically.
You can import through the web admin UI or from the CLI.
cd pub-release
source .venv/bin/activate
python scripts/import_csv.py /path/to/archive.csv --name "client archive" --activateExpected CSV columns:
title,url,type,candidate_types,tags,description,source
The web admin UI supports:
Runtime state lives in the data directory:
cd pub-release
docker build -t sectormap-web:latest .docker run \
--rm \
-p 3737:3737 \
-v "$(pwd)/data:/app/data" \
sectormap-web:latestOpen:
cd pub-release
cp .env.example .env
docker compose up --buildThe release already includes compiled CSS and bundled fonts/icons, so end users do not need Node.js to run it.
If you change the HTML and want to rebuild the local CSS bundle:
cd pub-release
npm install
npm run build:cssThat rebuilds:
These screenshots use either a small demo database or a locally imported full archive created only for documentation. The public release does not ship those datasets.
Desktop: Main Operations
Desktop: Galaxy View
Desktop: Galaxy Search Overlay
Desktop: Admin Dashboard
Mobile Web: Main Operations
Mobile Web: Galaxy Search
This release bundle is intentionally scoped to the deployable web app. The native iOS project is not included here.
| Back | FazBrowse Home | New Git URL |