Skip to content

Commit

Permalink
chore: augment directory structure
Browse files Browse the repository at this point in the history
Signed-off-by: Ibrahim Mbaziira <[email protected]>
  • Loading branch information
code-sleuth committed Aug 28, 2024
1 parent 493b612 commit f69319e
Showing 1 changed file with 54 additions and 41 deletions.
95 changes: 54 additions & 41 deletions docs/directories/directories.md
Original file line number Diff line number Diff line change
@@ -1,43 +1,56 @@
# Directory structure of the project
```shell
├── LICENSE
├── Makefile
├── README.md
├── app-service
│   ├── Cargo.lock
│   ├── Cargo.toml
│   ├── Dockerfile
│   ├── assets
│   │   ├── app.js
│   │   ├── default.jpg
│   │   └── logo.webp
│   ├── src
│   │   └── main.rs
│   └── templates
│   └── index.html
├── auth-service
│   ├── Cargo.lock
│   ├── Cargo.toml
│   ├── Dockerfile
│   ├── api_schema.yml
│   ├── assets
│   │   ├── app.js
│   │   ├── index.html
│   │   └── logo.webp
│   ├── src
│   │   ├── lib.rs
│   │   └── main.rs
│   └── tests
│   └── api
│   ├── helpers.rs
│   ├── main.rs
│   └── routes.rs
├── compose.override.yml
├── compose.yml
└── docs
├── architecture
├── directories
│   └── directories.md
└── releases
└── v0.0.0.md
```
.
├── Cargo.lock
├── Cargo.toml
├── Dockerfile
├── api_schema.yml
├── assets
│   ├── app.js
│   ├── index.html
│   └── logo.webp
├── bin
│   └── lambda
│   └── lambda.rs
├── lambda.arm.Dockerfile
├── lambda.x86_64.Dockerfile
├── m.txt
├── samconfig.toml
├── src
│   ├── app_state.rs
│   ├── domain
│   │   ├── data_stores.rs
│   │   ├── email.rs
│   │   ├── error.rs
│   │   ├── mod.rs
│   │   ├── password.rs
│   │   └── user.rs
│   ├── lib.rs
│   ├── main.rs
│   ├── routes
│   │   ├── login.rs
│   │   ├── logout.rs
│   │   ├── mod.rs
│   │   ├── signup.rs
│   │   ├── verify_2fa.rs
│   │   └── verify_token.rs
│   ├── services
│   │   ├── hashmap_user_store.rs
│   │   ├── hashset_banned_token_store.rs
│   │   └── mod.rs
│   └── utils
│   ├── auth.rs
│   ├── constants.rs
│   └── mod.rs
├── template.yaml
└── tests
└── api
├── helpers.rs
├── login.rs
├── logout.rs
├── main.rs
├── root.rs
├── signup.rs
├── verify_2fa.rs
└── verify_token.rs
```

0 comments on commit f69319e

Please sign in to comment.