Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
17 changes: 17 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Copy to .env for local development. Both files are gitignored.

# host:port to bind. Default 127.0.0.1:3000 — switch to 0.0.0.0:3000
# when running inside a container or behind a reverse proxy on a LAN.
WAVEFLOW_BIND=127.0.0.1:3000

# Per-request timeout enforced by the tower-http TimeoutLayer.
# Default 30 s. The streaming endpoint (1.e) is mounted on a separate
# router without this layer.
WAVEFLOW_REQUEST_TIMEOUT_SECS=30

# Logging.
# RUST_LOG syntax: `info,waveflow_server=debug,tower_http=debug`.
# WAVEFLOW_LOG_FORMAT=json switches to JSON output. Anything else =
# pretty (the default).
RUST_LOG=info,waveflow_server=debug,tower_http=debug
# WAVEFLOW_LOG_FORMAT=json
Loading
Loading