aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorChristian Cleberg <hello@cleberg.net>2025-05-06 21:31:46 -0500
committerGitHub <noreply@github.com>2025-05-06 21:31:46 -0500
commit95bf612c338dec8235e89ca6a1d9e5e8cad3f997 (patch)
tree82cfd62fb145b7b686d4ae825ab2c2436343e590 /README.md
parentd62f25007470fe546e0f9d2e38a26e84146f72c5 (diff)
downloadaudit-tools-95bf612c338dec8235e89ca6a1d9e5e8cad3f997.tar.gz
audit-tools-95bf612c338dec8235e89ca6a1d9e5e8cad3f997.tar.bz2
audit-tools-95bf612c338dec8235e89ca6a1d9e5e8cad3f997.zip
reorganize db dir (#6)
Diffstat (limited to 'README.md')
-rw-r--r--README.md27
1 files changed, 19 insertions, 8 deletions
diff --git a/README.md b/README.md
index df4973f..12eacc2 100644
--- a/README.md
+++ b/README.md
@@ -36,25 +36,36 @@ tree -I ".git*|venv"
│   ├── approvals.py
│   ├── branch_protections.py
│   ├── passwords.py
+│   ├── pipelines.py
│   ├── provisioning.py
│   ├── README.org
+│   ├── repositories.py
│   └── users.py
├── CODEOWNERS
├── databases
-│   ├── administrators
-│   │   ├── mssql_admins.sql
+│   ├── mongo
+│   │   ├── admins.py
+│   │   └── README.org
+│   ├── mysql
│   │   ├── mysql_admins_alt.sql
-│   │   ├── mysql_admins.sh
│   │   ├── mysql_admins.sql
+│   │   ├── passwords.sql
+│   │   └── README.org
+│   ├── oracle
│   │   ├── oracle_admins_alt.sql
│   │   └── oracle_admins.sql
-│   └── passwords
-│   └── sql
+│   ├── postgres
+│   │   ├── admins.sql
+│   │   ├── passwords.sql
+│   │   └── README.org
+│   └── sql
+│   ├── admins.sql
+│   └── passwords
│   ├── data.csv
│   ├── get_data.sql
│   └── test.py
├── LICENSE
-├── operating-systems
+├── os
│   └── linux
│   ├── passwords.sh
│   ├── README.org
@@ -68,12 +79,12 @@ tree -I ".git*|venv"
│   └── project_dashboard
│   ├── project_dashboard.pbix
│   └── project_data.xlsx
-├── README.org
+├── README.md
├── requirements.txt
└── sampling
├── README.org
- ├── sample-html.png
├── sample.html
+ ├── sample-html.png
└── sample.py
```