File tree Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Expand file tree Collapse file tree 1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change 1515
1616<!-- START doctoc generated TOC please keep comment here to allow auto update -->
1717<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
18+
1819** Table of Contents**
1920
2021- [ Description] ( #description )
@@ -127,11 +128,14 @@ The program works with given arguments and/or given dotenv-file.
127128
128129``` mermaid
129130flowchart TD;
130- A["Variable"]-. "is defined in dotenv-file" .->B[["set environment variable"]]
131- A["Variable"]-. "is not defined in dotenv-file" .->C[["get environment variable"]]
132- B-->C
133- C-- "is empty" -->E("EXIT")
134- C-- "not empty and valid" -->P[["encrypt or decrypt file"]]
131+ A["Variable"]-->Dotenv{"is defined in dotenv-file"}
132+ Dotenv-. "Y" .->Attrib{"is defined as attribute"}
133+ Dotenv-. "N" .->Attrib{"is defined as attribute"}
134+ Attrib-. "Y" .->S[["set environment variable"]]
135+ S-->V
136+ V[["get environment variable"]]
137+ V-- "is empty" -->E("EXIT")
138+ V-- "not empty and valid" -->P[["encrypt or decrypt file"]]
135139```
136140
137141** encryption or decryption**
@@ -292,6 +296,7 @@ An utility to load environment variables from a .env file
292296## folder structure
293297
294298<!-- readme-tree start -->
299+
295300```
296301.
297302├── .github
@@ -340,6 +345,7 @@ An utility to load environment variables from a .env file
340345
34134610 directories, 34 files
342347```
348+
343349<!-- readme-tree end -->
344350
345351<p align =" right " >(<a href =" #top " >back to top</a >)</p >
You can’t perform that action at this time.
0 commit comments