πDirectory Structure
Explore Able pro Angular Directory structure.
βββ src/
β βββ app/
β β βββ @theme/ -> Theming for the project will be managed here
β β β βββ components/ -> Custom-made component of theme
β β β β βββ card
β β β β βββ breadcrumb -> Theme breadcrumb
β β β β βββ helpers
β β β β βββ modal-dialog
β β β β βββ navigation/ -> Navigation components
β β β βββ layouts/ -> Layout for dashboard
β β β β βββ menu/
β β β β β βββ vertical-menu/
β β β β β βββ ...
β β β β βββ toolbar/
β β β βββ service/ -> Services related to theme
β β β βββ styles/
β β β β βββ layout -> Layout scss
β β β β βββ pages -> Pages scss
β β β β βββ theme-mode -> Theming mode scss
β β β β βββ grid.scss -> Gird layout scss
β β β β βββ theme-overrides.scss -> Angular material overrides
β β β β βββ theme-dark-palette-colors.scss -> Theming dark color scss
β β β β βββ theme-palette-colors.scss -> Theming color scss
β β β β βββ theme.scss -> Theming scss
β β β βββ types/
β β βββ demo/
β β β βββ data/
β β β β βββ component.ts
β β β β βββ menu.ts
β β β βββ layout/
β β β β βββ admin
β β β β βββ component
β β β β βββ empty
β β β β βββ front
β β β βββ pages/ -> View files for all pages
β β β β βββ admin-panel/ -> Admin Panel
β β β β β βββ helpdesk/
β β β β β βββ invoice/
β β β β β βββ membership/
β β β β β βββ online-courses/
β β β β βββ application/ -> Application pages
β β β β β βββ calender
β β β β β βββ kanban
β β β β β βββ ...
β β β β βββ auth/ -> Auth pages
β β β β β βββ authentication-1/
β β β β β βββ ...
β β β β βββ dashboard/ -> Dashboard page
β β β β βββ components/ -> Angular material component page
β β β β β βββ data-display/
β β β β β βββ ...
β β β β βββ ... -> Other theme page
β β β βββ shared/
β β βββ fake-data/ -> Dummy data
β β βββ app.component.html
β β βββ app.component.scss
β β βββ app.component.ts
β β βββ app.config.ts -> Different theme config
β β βββ app-routing.module.ts -> Different routes based on layouts
β βββ assets/
β βββ environments/
β βββ SCSS/
β β βββ fonts/
β β βββ more...
β βββ style.scss/ -> Theme style
β βββ _index.html
β βββ _main.ts
β βββ ...
βββ angular.json -> Angular json file
βββ package.json -> Package json file
βββ ...Last updated