Skip to content
This repository was archived by the owner on May 28, 2024. It is now read-only.

EnvironmentVariables

Mark Greenway edited this page Apr 29, 2023 · 2 revisions

Looking from the Getting Started Guide

# Example docker-compose environment variables
environment: 
    CustomString : "EnvironmentVariablesSetCorrectly"
    MaxFailures : 15,
    CleanupAggressiveness : "None"
    ServiceFrequency: 5
    DataBaseType:  FileSystem

Configuration variables:

  • CustomString (Optional): Used to verify the Environment Settings are correctly setup.
  • MaxFailures (Optional): How many failed callbacks before it fails (Default : 10)
  • CleanupAggressiveness (Optional): Which callbacks to delete .
    • AllComplete → completed and error callbacks - Default
    • SuccessOnly → successfully completed only
    • None → Leave everything
  • ServiceFrequency (Optional): Seconds between checking for callbacks to call (Default : 5)
  • DataBaseType (Optional): What database engine to use
    • FileSystem → writes human readable Json to /Data/json
    • SqlLiteInMemory → uses an in memory SQL lite db (very transient, clears when re-launching)
    • SqlLite → writes to file system /Data/sqlite/callbacks.db - Default

More Configuration to follow

Clone this wiki locally