From e6fb91bbd4b4650b02d818ad58ccf7d03a497fde Mon Sep 17 00:00:00 2001 From: Yota Hamada Date: Wed, 6 Nov 2024 22:41:52 +0900 Subject: [PATCH] Add documentation about tz config --- docs/source/config.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/source/config.rst b/docs/source/config.rst index 44511a64..00366004 100644 --- a/docs/source/config.rst +++ b/docs/source/config.rst @@ -29,6 +29,7 @@ The following environment variables can be used to configure the Dagu. Default v - ``DAGU_WORK_DIR``: The working directory for DAGs. If not set, the default value is DAG location. Also you can set the working directory for each DAG steps in the DAG configuration file. For more information, see :ref:`specifying working dir`. - ``DAGU_CERT_FILE``: The path to the SSL certificate file. - ``DAGU_KEY_FILE`` : The path to the SSL key file. +- ``DAGU_TZ`` (``""``): The timezone to use for the server. By default, the server will use the system's local timezone. Config File -------------- @@ -69,6 +70,9 @@ You can create ``admin.yaml`` file in ``$HOME/.config/dagu/`` to override the de tls: certFile: keyFile: + + # Timezone Configuration + tz: # default: "" (e.g. "Asia/Tokyo") .. _Host and Port Configuration: