An optimized version of the classify client endpoint in Normandy
Перейти к файлу
Mike Cooper d0e8c0513b
Fix clippy problems
2018-12-17 13:36:25 -08:00
.circleci Don't run rust check in CI, so that clippy actually works 2018-12-17 13:33:08 -08:00
src Fix clippy problems 2018-12-17 13:36:25 -08:00
.dockerignore Updates to deploy in Google App Engine 2018-12-10 14:54:52 -08:00
.gitignore add README 2018-12-10 15:26:41 -08:00
.therapist.yml Clippy 2018-12-10 15:18:29 -08:00
Cargo.lock Remove cargo-culted and unneeded ctrlc handling 2018-12-13 15:45:36 -08:00
Cargo.toml Remove cargo-culted and unneeded ctrlc handling 2018-12-13 15:45:36 -08:00
Dockerfile Updates to deploy in Google App Engine 2018-12-10 14:54:52 -08:00
README.md Read VERSION_FILE location from env 2018-12-17 16:02:12 +01:00
app.yaml Updates to deploy in Google App Engine 2018-12-10 14:54:52 -08:00

README.md

Classify Client

This is an optimized version of the classify client endpoint in Normandy.

Dev instructions

This is a normal Cargo project, so after cloning the repository, you can build and run it with

$ cargo build
$ cargo run

This project should run on the latest stable version of Rust. Unstable features are not allowed.

GeoIP Database

A GeoIP database is required. For development purposes, one can be obtained from the Maxmind website. The GeoLite2 Country database is recommended. It should be placed at the root of the repository.

Configuration

Via environment variables:

  • HOST: host (default: localhost)
  • PORT: port number (default: 8080)
  • GEOIP_DB_PATH: path to GeoIP database (default: ./GeoLite2-Country.mmdb)
  • VERSION_FILE: path to version.json file (default: ./version.json)

Tests

Tests can be run with Cargo as well

$ cargo test

Linting

Linting is handled via Therapist. After installing it, enable the git hooks using either therapist install or therapist install --fix. The --fix variant will automatically format your code upon commit. The variant without --fix will simply show an error and ask you to reformat the code using other means before committing. Therapist runs in CI.

The checks Therapist runs are:

  • Rustfmt
  • Clippy, using the clippy::all preset