Skip to content

Setup Guide

Nite edited this page Jul 20, 2023 · 9 revisions

How to start using SEEKR

Seekr is easy to setup. If you run into any issues during the installation, read the troubleshooting page in the wiki.

Requirements

Windows

Download and run the latest executable file here.

Windows (unstable)

Make sure to install TypeScript and Go. To install seekr on windows simply run:

git clone https://github.com/seekr-osint/seekr
cd seekr
go generate ./...
tsc --project web
go run main.go

Docker

docker pull ghcr.io/seekr-osint/seekr:latest
docker run -p 8569:8569 ghcr.io/seekr-osint/seekr:latest

Linux (stable)

Download the latest stable binary here

Linux (unstable)

To install seekr on linux simply run:

git clone https://github.com/seekr-osint/seekr
cd seekr
go generate ./...
tsc --project web
go run main.go

Run on NixOS

Seekr is build with NixOS in mind and therefore supports nix flakes. To run seekr on NixOS run following commands.

nix shell github:seekr-osint/seekr
seekr

Now open the web interface in your browser of choice. If the default port (8569) is occupied, the next possible port is used.

Now you are all set!
On the next pages you will see how to use SEEKR.