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 15
15
16
16
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
17
17
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
18
+
18
19
** Table of Contents**
19
20
20
21
- [ Description] ( #description )
@@ -127,11 +128,14 @@ The program works with given arguments and/or given dotenv-file.
127
128
128
129
``` mermaid
129
130
flowchart 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"]]
135
139
```
136
140
137
141
** encryption or decryption**
@@ -292,6 +296,7 @@ An utility to load environment variables from a .env file
292
296
## folder structure
293
297
294
298
<!-- readme-tree start -->
299
+
295
300
```
296
301
.
297
302
├── .github
@@ -340,6 +345,7 @@ An utility to load environment variables from a .env file
340
345
341
346
10 directories, 34 files
342
347
```
348
+
343
349
<!-- readme-tree end -->
344
350
345
351
<p align =" right " >(<a href =" #top " >back to top</a >)</p >
You can’t perform that action at this time.
0 commit comments