From 5682eab8dc35e6753b13793812f5eb58f70f5514 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Fri, 23 Jul 2021 15:33:43 -0700 Subject: [PATCH] Update Readme to describe how to configure using env variables --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 92302ef..b06b626 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,8 @@ Configuration values are as follows: |`ldap_sync_interval_seconds`|Integer|Optional|Number of seconds to wait between each LDAP request. Defaults to `60`| |`ldap_sync_loop`|Boolean|Optional|Indicates whether or not syncing should be polled in a loop or done once. Defaults to `true`| +Alternatively, instead of using `config.toml`, all values can be provided using enviroment variables prefixed with `APP_`. For example: `APP_VAULTWARDEN_URL=https://vault.example.com` + ## Development This repo has a predefined set of [pre-commit](https://pre-commit.com) rules. You can install pre-commit via any means you'd like. Once your system has `pre-commit` installed, you can run `make install-hooks` to ensure the hooks will run with every commit. You can also force running all hooks with `make check`.