find

(β˜… 5,098)

High-precision indoor positioning framework for most wifi-enabled devices.

  • .gitattributes
  • .gitignore
  • .travis.yml
  • api.go
  • api_test.go
  • backup.go
  • backup_test.go
  • BENCHMARKS.md
  • cache.go
  • cache_test.go
  • db.go
  • Dockerfile
  • FAQ.md
  • fingerprint.go
  • fingerprint_ffjson.go
  • fingerprint_test.go
  • Gopkg.lock
  • Gopkg.toml
  • LICENSE
  • macs.json
  • Makefile
  • mqtt.go
  • mqtt_test.go
  • network.go
  • network_test.go
  • NOTICE
  • parameters.go
  • parameters_ffjson.go
  • parameters_test.go
  • posterior.go
  • posterior_test.go
  • priors.go
  • priors_test.go
  • priorsThreaded.go
  • README.md
  • rf.go
  • RF.py
  • rf.py
  • routes.go
  • server.go
  • supervisord.conf
  • svm.go
  • svm_test.go
  • test_rf.py
  • utils.go

πŸš€ Installation Guide

1. Get the code
git clone https://github.com/schollz/find

Downloads the entire project code from GitHub to your computer.

cd find

Moves into the project folder you just downloaded.

2. Docker

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -t find .

Builds a runnable image based on the Dockerfile.

docker run -p 8080:80 find

Runs the built image as an actual container.

βœ… Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.

3. Make

Medium
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make

Compiles the code based on the generated build configuration to produce an executable.

βœ… If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation