Skip to content
Snippets Groups Projects

Ingest

Merged Ghost User requested to merge ingest into main
1 file
+ 26
0
Compare changes
  • Side-by-side
  • Inline
Makefile 0 → 100644
+ 26
0
build:
cargo build
lint:
cargo fmt --check
cargo clippy -- -D warnings
docs:
cargo doc --open --lib --no-deps
cli-docs:
cargo doc --open --bin=cli --no-deps
dummy-data:
cd cli && \
cargo run -- solr-ingest --data-dir ../.docker/data
# sadly necessary to get this compiling for Linux on Mac thanks to openssl
# TODO: figure out if a local install of openssl on Mac can make this work
docker-build:
docker run \
-v $(PWD):/workspace \
-w /workspace \
rust:latest \
cargo build --release
Loading