Skip to content

strohel/locations-rs

Repository files navigation

locations-rs (Locations Service in Rust)

Small but production-ready webservice in Rust, using Actix web framework.

The service implements an API specification of one feature for goout.net platform. It was shadow-developed alongside main implementation in Kotlin http4k made by @goodhoko at GoOut for comparison and joy.

Alternatives

Multiple implementations of this service exist in different frameworks, languages for comparison.

Build, Build Documentation, Run

To play/develop:

  1. Install Rust locally, preferrably using rustup.
  2. Use Cargo to do all development work:
  • Build: cargo build
    • The executable binary is built at target/debug/locations-rs
    • Pass --release to compile with optimizations (into target/release/)
  • Build & Run: cargo run
  • Run tests (when there are any): cargo test
  • Check the code compiles (faster than build): cargo check
    • Run additional code analysis, superset of check: cargo clippy
    • Some issues can be automatically fixed with: cargo fix
  • Check code formatting: cargo fmt -- --check
    • Automatically fix code formatting: cargo fmt
  • Build documentation: cargo doc --no-deps
    • Point your browser to target/doc/locations-rs/index.html
  • Do most of the above at once whenever any file changes using cargo watch: cargo watch -x clippy -x test -x 'fmt -- --check' -x 'doc --no-deps' -x run

Runtime Dependencies

The locations service needs an Elasticsearch instance to operate. The instance should contain indices city and region filled with some data. The GOOUT_ELASTIC_HOST and GOOUT_ELASTIC_PORT (usually 9200) environment variables need to point to the instance.

This repository contains elasticsearch directory with ready-made dockerized Elasticsearch instance pre-filled with data. Simply set GOOUT_ELASTIC_HOST to a host that runs the Docker image. Note that if both locations and Elasticsearch run in separate Docker containers, one needs to point locations to host address like 172.17.0.1 (GOOUT_ELASTIC_HOST of 127.0.0.1 or 0.0.0.0 won't work).

The directory also contains mapping definitions of the 2 indices and example data.

License

This project is licensed under GNU Affero General Public License, version 3.

About

Small but production-ready webservice in Rust, using Actix web framework.

Topics

Resources

License

Stars

Watchers

Forks