Skip to content

Commit

Permalink
docs: update README
Browse files Browse the repository at this point in the history
  • Loading branch information
ShahriyarR committed Oct 23, 2022
1 parent a83b5ef commit 37cf17e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 88 deletions.
89 changes: 1 addition & 88 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,94 +20,7 @@ Why Hexagonal?

## Project folder structure

```sh
src/jobboard/
├── adapters
│   ├── db
│   │   ├── alembic.ini
│   │   ├── __init__.py
│   │   ├── migrations
│   │   │   ├── env.py
│   │   │   ├── README
│   │   │   ├── script.py.mako
│   │   │   └── versions
│   │   │   └── 7794fd8602f8_.py
│   │   ├── orm.py
│   │   ├── repository.py
│   │   ├── unit_of_work.py
│   │   └── utils.py
│   └── entrypoints
│   ├── api
│   │   ├── base.py
│   │   ├── __init__.py
│   │   ├── utils.py
│   │   └── v1
│   │   ├── route_jobs.py
│   │   ├── route_login.py
│   │   └── route_users.py
│   ├── application.py
│   ├── __init__.py
│   ├── static
│   │   ├── images
│   │   │   ├── lite.gif
│   │   │   └── logo.png
│   │   └── js
│   │   └── autocomplete.js
│   ├── templates
│   │   ├── auth
│   │   │   └── login.html
│   │   ├── components
│   │   │   ├── alerts.html
│   │   │   ├── cards.html
│   │   │   └── navbar.html
│   │   ├── general_pages
│   │   │   └── homepage.html
│   │   ├── jobs
│   │   │   ├── create_job.html
│   │   │   ├── detail.html
│   │   │   └── show_jobs_to_delete.html
│   │   ├── shared
│   │   │   └── base.html
│   │   └── users
│   │   └── register.html
│   └── webapps
│   ├── auth
│   │   ├── forms.py
│   │   └── route_login.py
│   ├── base.py
│   ├── __init__.py
│   ├── jobs
│   │   ├── forms.py
│   │   └── route_jobs.py
│   └── users
│   ├── forms.py
│   └── route_users.py
├── domain
│   ├── model
│   │   ├── events.py
│   │   ├── __init__.py
│   │   └── model.py
│   ├── ports
│   │   ├── __init__.py
│   │   ├── job_service.py
│   │   ├── messagebus.py
│   │   ├── repository.py
│   │   ├── unit_of_work.py
│   │   └── user_service.py
│   └── schemas
│   ├── jobs.py
│   ├── tokens.py
│   └── users.py
├── __init__.py
└── configurator
├── config.py
├── containers.py
├── hashing.py
└── security.py

26 directories, 56 files
```

![](./docs/tree.png)


## How to install?
Expand Down
Binary file added docs/tree.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 37cf17e

Please sign in to comment.