Skip to content

Commit

Permalink
docs: use --all-features in config examples
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalenic committed Jan 6, 2025
1 parent c5f045a commit 752c877
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion htsget-config/examples/config-files/c4gh.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# An example of running htsget-rs with Crypt4GH enabled.
# Run with `cargo run -p htsget-axum --features experimental,aws -- --config htsget-config/examples/config-files/c4gh.toml`
# Run with `cargo run -p htsget-axum --all-features -- --config htsget-config/examples/config-files/c4gh.toml`

ticket_server.addr = "127.0.0.1:8080"
data_server.addr = "127.0.0.1:8081"
Expand Down
2 changes: 1 addition & 1 deletion htsget-config/examples/config-files/s3_storage.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# An example for a server which uses s3 storage with data located in "bucket".
# Run with `cargo run -p htsget-axum --features aws -- --config htsget-config/examples/config-files/s3_storage.toml`
# Run with `cargo run -p htsget-axum --all-features -- --config htsget-config/examples/config-files/s3_storage.toml`

ticket_server.cors.allow_headers = "All"
ticket_server.cors.allow_methods = "All"
Expand Down
2 changes: 1 addition & 1 deletion htsget-config/examples/config-files/tls_data_server.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# An example config file for a TLS data server that uses a local storage backend.
# Run with `cargo run -p htsget-axum -- --config htsget-config/examples/config-files/tls_data_server.toml`
# Run with `cargo run -p htsget-axum --all-features -- --config htsget-config/examples/config-files/tls_data_server.toml`

ticket_server.addr = "0.0.0.0:8080"
data_server.addr = "0.0.0.0:8081"
Expand Down
2 changes: 1 addition & 1 deletion htsget-config/examples/config-files/tls_ticket_server.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# An example config file for a TLS ticket server that uses S3 as a storage backend.
# Run with `cargo run -p htsget-axum --features aws -- --config htsget-config/examples/config-files/tls_ticket_server.toml`
# Run with `cargo run -p htsget-axum --all-features -- --config htsget-config/examples/config-files/tls_ticket_server.toml`

ticket_server.addr = "0.0.0.0:8080"
ticket_server.cors_allow_origins = "All"
Expand Down
2 changes: 1 addition & 1 deletion htsget-config/examples/config-files/url_storage.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# An example for a server which uses url storage with data located at "http://localhost:3000".
# Run with
# `cargo run -p htsget-axum --features url -- --config htsget-config/examples/config-files/url_storage.toml`
# `cargo run -p htsget-axum --all-features -- --config htsget-config/examples/config-files/url_storage.toml`
# in the project directory.

ticket_server.addr = "127.0.0.1:8082"
Expand Down

0 comments on commit 752c877

Please sign in to comment.