srill 1.1.0

Subscribe Redis and Invoke Lambda with cargo lambda, for Local development.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Srill Configuration File Example
# Copy this file to srill.toml and modify as needed

# Redis connection URL (optional, overrides --redis-url)
redis_url = "redis://localhost:6379"

# Port used by `cargo lambda watch` / `cargo lambda invoke`
invoke_port = 9000

# Channel to Lambda function mappings
[channels]
user-events = "user-lambda"
order-events = "order-lambda"
notification-events = "notification-lambda"
analytics-events = "analytics-lambda"