We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87ea2a5 commit e59fb1eCopy full SHA for e59fb1e
src/env_example/main.py
@@ -107,16 +107,20 @@ class ParsedSettings:
107
108
109
def main() -> None:
110
- parser = argparse.ArgumentParser()
+ parser = argparse.ArgumentParser(
111
+ description="Create a single .env.example file for all Pydantic settings classes in your project."
112
+ )
113
parser.add_argument(
114
"--exclude-dir",
115
default=None,
116
type=Path,
117
action="append",
118
+ help="Exclude directory from the search. Relative to cwd.",
119
)
120
121
"--ignore-optionals",
122
action="store_true",
123
+ help="Optional settings fields are ignored.",
124
125
namespace = parser.parse_args()
126
0 commit comments