Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
f223508
build: use correct vergen-gitcl version
ChristianBeilschmidt Feb 3, 2026
47454b9
feat: GdalSource as openapi
ChristianBeilschmidt Feb 3, 2026
97124aa
feat: MockPointSource OpenAPI
ChristianBeilschmidt Feb 3, 2026
8b0cf01
feat: expression openapi
ChristianBeilschmidt Feb 3, 2026
96e6643
feat: RasterVectorJoin openapi
ChristianBeilschmidt Feb 3, 2026
1b9d720
fmt
ChristianBeilschmidt Feb 3, 2026
b87d752
empty plot operator type
ChristianBeilschmidt Feb 4, 2026
bd3faa3
Merge branch 'main' of github.com:geo-engine/geoengine into operators…
ChristianBeilschmidt Feb 4, 2026
ab9b2e6
fix: enhance expression and raster/vector join operators with new sou…
ChristianBeilschmidt Feb 4, 2026
126f71e
fix: add Expression operator and support for RasterVectorJoin conversion
ChristianBeilschmidt Feb 4, 2026
9d0869c
fix: update ColumnNames enum to use structured values and enhance Ope…
ChristianBeilschmidt Feb 5, 2026
9d1255a
fix: add schema annotation to output_band in ExpressionParameters to …
ChristianBeilschmidt Feb 5, 2026
4bd6c47
fix: update OpenAPI documentation and schema annotations for Expressi…
ChristianBeilschmidt Feb 5, 2026
ce6c524
Refactor API structure and remove deprecated files
ChristianBeilschmidt Mar 5, 2026
2e8280d
Merge branch 'main' of github.com:geo-engine/geoengine into operators…
ChristianBeilschmidt Mar 5, 2026
d9b50cb
refactor: remove 4th impl of coordinate2d
ChristianBeilschmidt Mar 6, 2026
fec6177
refactor: update Workflow usage to Legacy variant across multiple mod…
ChristianBeilschmidt Mar 9, 2026
c3d11c3
build: add justfile for build, lint, run, and test commands
ChristianBeilschmidt Mar 9, 2026
20b34df
refactor: rename TypedOperator to LegacyTypedOperator and update refe…
ChristianBeilschmidt Mar 9, 2026
002d2c6
refactor: update visit_schema and visit_response functions to include…
ChristianBeilschmidt Mar 9, 2026
a1a242b
Merge branch 'main' of github.com:geo-engine/geoengine into operators…
ChristianBeilschmidt Mar 11, 2026
d90c741
build: update dependencies to latest versions in Cargo.lock
ChristianBeilschmidt Mar 11, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 18 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

41 changes: 41 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
_default:
@just --list

# Generate OpenAPI specification as JSON file. The file is generated in the current directory.
[group("build")]
generate-openapi-spec:
@-clear
cargo run --bin geoengine-cli -- openapi > openapi.json

# Run lints.
[group("lint")]
lint:
@-clear
just _lint-clippy

_lint-clippy:
cargo clippy --all-features --all-targets

# Run clippy for all features and all targets.
[group("lint")]
lint-clippy:
@-clear
just _lint-clippy

# Run the application.
[group("run")]
run:
@-clear
cargo run

# Run the tests. Optionally, a filter can be provided to run only a subset of the tests.
[group("test")]
test filter="":
@-clear
cargo test -- {{ filter }} --nocapture

# Run the tests for the geoengine-services package. Optionally, a filter can be provided to run only a subset of the tests. Example: just test-services workflows::workflow::tests
[group("test")]
test-services filter="":
@-clear
cargo test --package geoengine-services -- {{ filter }} --nocapture
Loading
Loading