-
Notifications
You must be signed in to change notification settings - Fork 47
Setup Guide
Nite edited this page Jul 20, 2023
·
9 revisions
Seekr is easy to setup. If you run into any issues during the installation, read the troubleshooting page in the wiki.
Download and run the latest executable file here.
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 pull ghcr.io/seekr-osint/seekr:latest
docker run -p 8569:8569 ghcr.io/seekr-osint/seekr:latest
Download the latest stable binary here
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
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.