Skip to content
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
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
6 changes: 6 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ AUTH_PROVIDER=DISABLED
AUTH_Z_PROVIDER=DISABLED
WORKER_ID=1
# MASTER_ENCRYPTION_KEY - add this for enabling secrets in local
REDIS_URL="http://localhost:6379"
REDIS_POOL_SIZE="10"
REDIS_MAX_ATTEMPTS="10"
REDIS_CONN_TIMEOUT="1000"
# TTL in seconds
REDIS_KEY_TTL=604800

################################################
## Following values are to be set in KMS and not directly in ENV
Expand Down
2 changes: 2 additions & 0 deletions Cargo.lock

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

3 changes: 1 addition & 2 deletions crates/context_aware_config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ blake3 = { workspace = true }
cac_client = { path = "../cac_client" }
chrono = { workspace = true }
diesel = { workspace = true, features = ["numeric"] }
fred = { workspace = true, optional = true, features = ["metrics"] }
fred = { workspace = true, features = ["metrics"] }
itertools = { workspace = true }
jsonlogic = { workspace = true }
jsonschema = { workspace = true }
Expand All @@ -39,7 +39,6 @@ uuid = { workspace = true }

[features]
disable_db_data_validation = ["superposition_types/disable_db_data_validation"]
high-performance-mode = ["dep:fred"]


[lints]
Expand Down
1 change: 1 addition & 0 deletions crates/context_aware_config/src/api/config.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
mod handlers;
pub use handlers::endpoints;
pub use handlers::fetch_audit_id;
pub mod helpers;
Loading
Loading