Skip to content

Commit 4702884

Browse files
committed
v0.2.0
1 parent 0ec044c commit 4702884

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
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
129130
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"]]
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
341346
10 directories, 34 files
342347
```
348+
343349
<!-- readme-tree end -->
344350

345351
<p align="right">(<a href="#top">back to top</a>)</p>

0 commit comments

Comments
 (0)