Skip to content

Commit

Permalink
Add REDIS settings by default in production.py sample
Browse files Browse the repository at this point in the history
  • Loading branch information
Augustin-FL committed Dec 27, 2024
1 parent 2888848 commit 73504bf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions fir/config/production.py.sample
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,8 @@ INCIDENT_SHOW_ID = env.bool('INCIDENT_SHOW_ID', default=False)

# Incident ID prefix in views and links
INCIDENT_ID_PREFIX = env('INCIDENT_ID_PREFIX', "FIR-")

# Some modules use celery, which require a redis host
REDIS_HOST = "localhost"
REDIS_PORT = 6379
REDIS_DB = 0

0 comments on commit 73504bf

Please sign in to comment.