Skip to content

Instantly share code, notes, and snippets.

@pedro-psb
Last active March 8, 2023 14:49
Show Gist options
  • Save pedro-psb/d26a78d2d3742b1086d935ba8e9bd109 to your computer and use it in GitHub Desktop.
Save pedro-psb/d26a78d2d3742b1086d935ba8e9bd109 to your computer and use it in GitHub Desktop.
#879 [bug] dynaconf validate not working with dynaconf_validators.toml
from dynaconf import Dynaconf
settings = Dynaconf(
envvar_prefix="DYNACONF",
settings_file="settings.toml",
environments=True,
)
[default]
number = { is_type_of="int" }
# set up the venv
python3 -m venv venv && source venv/bin/activate && pip install dynaconf
# validate command
dynaconf -i config.settings validate
[default]
number = 12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment