Directory Structure
Explore Berry Angular Directory structure.
Inside the full-version/
directory you will find the following Berry Angular well-structured directories.
full-version/
├── src/
│ ├── app/
│ │ ├── demo/
│ │ │ ├── admin-panel/
│ │ │ │ ├── online-coures/
│ │ │ │ ├── helpdesk/
│ │ │ │ ├── ...more
│ │ │ ├── application/
│ │ │ │ ├── calender
│ │ │ │ ├── chat
│ │ │ │ ├── ...
│ │ │ ├── chart-maps/
│ │ │ │ ├── core-chart
│ │ │ │ │ ├── apex-chart
│ │ │ │ ├── core-map/
│ │ │ │ │ ├── google-map
│ │ │ ├── dashboard/
│ │ │ │ ├── analytics
│ │ │ │ ├── default
│ │ │ ├── elements/
│ │ │ │ ├── advance
│ │ │ │ │ ├── adv-lightbox
│ │ │ │ │ ├── ...
│ │ │ │ ├── basic
│ │ │ │ │ ├── alert
│ │ │ │ │ ├── button
│ │ │ │ │ ├── ...
│ │ │ │ ├── icons
│ │ │ │ │ ├── tabler
│ │ │ │ ├── typography
│ │ │ ├── forms/
│ │ │ │ ├── file-upload/
│ │ │ │ │ ├── file-dropzone
│ │ │ │ ├── form-elements/
│ │ │ │ │ ├── form-floating
│ │ │ │ │ ├── ...
│ │ │ │ ├── form-layout/
│ │ │ │ │ ├── forms-actionbars
│ │ │ │ │ ├── ...
│ │ │ │ ├── form-plugin/
│ │ │ │ │ ├── re-captcha
│ │ │ │ │ ├── ...
│ │ │ │ ├── images-cropper/
│ │ │ │ ├── form-validation
│ │ │ │ ├── text-editors/
│ │ │ │ │ ├── editor
│ │ │ │ │ ├── ...
│ │ │ ├── other/
│ │ │ │ ├── sample-page/
│ │ │ ├── pages/
│ │ │ │ ├── authentication/
│ │ │ │ ├── ...
│ │ │ ├── widget/
│ │ │ │ ├── wget-charts/
│ │ │ │ ├── data/
│ │ │ │ ├── ...
│ │ ├── theme/
│ │ │ ├── layout/
│ │ │ │ ├── admin/
│ │ │ │ │ ├── configuration
│ │ │ │ │ ├── nav-bar/
│ │ │ │ │ │ ├── nav-left
│ │ │ │ │ │ ├── nav-logo
│ │ │ │ │ │ ├── nav-right
│ │ │ │ │ ├── navigation/
│ │ │ │ │ │ ├── nav-content/
│ │ │ │ │ │ │ ├── nav-collapse
│ │ │ │ │ │ │ ├── nav-group
│ │ │ │ │ │ │ ├── nav-item
│ │ │ │ │ │ ├── nav-logo/
│ │ │ │ ├── guest/
│ │ │ ├── shared/
│ │ │ │ ├── components/
│ │ │ │ │ ├── breadcrumb
│ │ │ │ │ ├── card
│ │ │ │ │ ├── ...
│ │ │ │ ├── shared.module.ts
│ │ ├── app.component.html
│ │ ├── app.component.scss
│ │ ├── app.component.ts
│ │ ├── app.module.ts
│ │ ├── app.config.ts
│ │ ├── app-routing.module.ts
│ ├── assets/
│ ├── environments/
│ ├── fake-data/
│ ├── scss/
│ │ ├── fonts/
│ │ ├── settings/
│ │ │ ├── bootstrap-variables.scss
│ │ │ ├── color-variables.scss
│ │ │ ├── theme-variables.scss
│ │ ├── themes/
│ │ │ ├── _bootstrap.scss
│ │ │ ├── _general.scss
│ │ │ ├── _generic.scss
│ │ │ ├── ...
│ │ ├── bootstrap/
│ │ ├── ...
│ ├── _index.html
│ ├── _main.ts
│ ├── ...
├── angular.json
├── package.json
├── ...
Last updated