Skip to content

Commit

Permalink
chore: encase messenger config in .env.example in single quotes (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
armyhaylenko authored Jan 31, 2025
1 parent 0297bd2 commit ae90a2b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
SNAPSHOTDIR=./snapshot/*.tar.zst
PLUGIN_MESSENGER_CONFIG={messenger_type="Redis", connection_config={redis_connection_str="redis://:[email protected]:6379"}}
SNAPSHOT_REDIS_CONNECTION_STR='redis://localhost:6379'
# can be omitted for snapshot processing
PLUGIN_MESSENGER_CONFIG='{messenger_type="Redis", connection_config={redis_connection_str="redis://:[email protected]:6379"}}'
SNAPSHOT_REDIS_CONNECTION_STR=redis://localhost:6379 # ensure no quotes are put here because docker does not parse quoted env correctly

# please do not remove the following line from this example
# remove when creating the actual env file
# vim: set ft=bash

0 comments on commit ae90a2b

Please sign in to comment.