Browse Source

updated readme with new project structure - full

cli-archive
nic 2 years ago
parent
commit
39a177bdb3
  1. 143
      Readme.md

143
Readme.md

@ -2,69 +2,80 @@
## Project Structure ## Project Structure
```project_root/ ```` .
├── apps/ ├──  apps
│ ├── cli/ │ ├──  cli
│ │ └── main.go │ │ └──  main.go
│ └── web/ │ └──  web
│ └── main.go │ └──  main.go
├── internal/ ├──  go.mod
│ ├── api/ ├──  go.sum
│ │ ├── api.go ├──  internal
│ │ ├── auth.go │ ├── 󰒍 api
│ │ ├── jobs.go │ │ ├──  api.go
│ │ ├── invoices.go │ │ ├──  auth.go
│ │ └── deficiencies.go │ │ ├──  deficiencies.go
│ ├── handlers/ │ │ ├──  invoices.go
│ │ ├── web/ │ │ ├──  jobs.go
│ │ │ ├── admin.go │ │ └──  session_store.go
│ │ │ ├── assets.go │ ├──  auth
│ │ │ ├── auth.go │ │ └──  auth.go
│ │ │ ├── companies.go │ ├──  handlers
│ │ │ ├── contacts.go │ │ ├──  cli
│ │ │ ├── contracts.go │ │ │ ├──  admin.go
│ │ │ ├── dashboard.go │ │ │ ├──  assets.go
│ │ │ ├── generic.go │ │ │ ├──  companies.go
│ │ │ ├── invoices.go │ │ │ ├──  contacts.go
│ │ │ ├── jobs.go │ │ │ ├──  contracts.go
│ │ │ ├── locations.go │ │ │ ├──  generic.go
│ │ │ ├── notifications.go │ │ │ ├──  invoices.go
│ │ │ ├── quotes.go │ │ │ ├──  jobs.go
│ │ │ ├── services.go │ │ │ ├──  locations.go
│ │ │ ├── tags.go │ │ │ ├──  login.go
│ │ │ └── users.go │ │ │ ├──  notifications.go
│ │ └── cli/ │ │ │ ├──  quotes.go
│ │ ├── admin.go │ │ │ ├──  services.go
│ │ ├── assets.go │ │ │ ├──  tags.go
│ │ ├── companies.go │ │ │ └──  users.go
│ │ ├── contacts.go │ │ └──  web
│ │ ├── contracts.go │ │ ├──  admin.go
│ │ ├── generic.go │ │ ├──  assets.go
│ │ ├── invoices.go │ │ ├──  companies.go
│ │ ├── jobs.go │ │ ├──  contacts.go
│ │ ├── locations.go │ │ ├──  contracts.go
│ │ ├── notifications.go │ │ ├──  dashboard.go
│ │ ├── quotes.go │ │ ├──  generic.go
│ │ ├── services.go │ │ ├──  invoices.go
│ │ ├── tags.go │ │ ├──  jobs.go
│ │ └── users.go │ │ ├──  locations.go
│ ├── models/ │ │ ├──  login.go
│ │ └── models.go │ │ ├──  notifications.go
│ └── utils/ │ │ ├──  quotes.go
│ ├── ui.go │ │ ├──  services.go
│ └── utils.go │ │ ├──  tags.go
├── static/ │ │ └──  users.go
│ ├── css/ │ ├──  middleware
│ │ └── styles.css │ │ └──  auth_middleware.go
│ └── js/ │ ├──  models
│ └── htmx.min.js │ │ └──  models.go
├── templates/ │ ├──  ui
│ ├── layout.html │ │ └──  ui.go
│ ├── login.html │ └──  utils
│ ├── dashboard.html │ └──  utils.go
│ └── partials/ ├──  Readme.md
│ ├── jobs.html ├──  static
│ ├── invoices.html │ └──  css
│ └── ... │ └──  styles.css
└── go.mod └──  templates
``` ├──  dashboard.html
├──  layout.html
├──  login.html
└──  partials
├──  admin.html
├──  assets.html
├──  companies.html
├──  invoice_search.html
├──  invoice_search_results.html
└──  jobs.html
```
````

Loading…
Cancel
Save