Last active
March 8, 2023 14:49
-
-
Save pedro-psb/d26a78d2d3742b1086d935ba8e9bd109 to your computer and use it in GitHub Desktop.
#879 [bug] dynaconf validate not working with dynaconf_validators.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from dynaconf import Dynaconf | |
settings = Dynaconf( | |
envvar_prefix="DYNACONF", | |
settings_file="settings.toml", | |
environments=True, | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[default] | |
number = { is_type_of="int" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# set up the venv | |
python3 -m venv venv && source venv/bin/activate && pip install dynaconf | |
# validate command | |
dynaconf -i config.settings validate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[default] | |
number = 12 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment