Better Environment Variable Support, and a Dockerfile 🌱 🐋
- 📂 New option:
--cwd-env
(-c
)- Allows you to automatically search your current working directory and its parent directories for the right
.env
file to use, rather than the installation directory - Contributed by @Eta0 (hey, that's me! 👋)
- Allows you to automatically search your current working directory and its parent directories for the right
- 🌳 Environment variable alternatives to
--database
and--log
:AUTODELETE_DATABASE_PATH
andAUTODELETE_LOG_PATH
- These let you configure significantly more of the runtime parameters purely through environment variables, allowing for more setups not requiring command line arguments
- This means the
.env
file can now double as a configuration file in many cases, if desired
- This means the
- Contributed by @stas in #2 (with a slightly different implementation) and revised by @Eta0
- These let you configure significantly more of the runtime parameters purely through environment variables, allowing for more setups not requiring command line arguments
- 🐋 New Dockerfile!
Thanks @stas! 🎇