Folder Structure

Folder Structure

starterkit/
							├── node_modules
							├── src
							|   ├── app/
							|   |   ├── authentication
							|   |   ├── components
							|   |   ├── material-module
							|   |   ├── shared
							|   |   ├── app.component.html
							|   |   ├── app.component.scss
							|   |   ├── app.component.spec.ts
							|   |   ├── app.component.ts
							|   |   ├── app.config.ts
							|   |   └── app.routes.ts
							|   ├── assets/
							|   |   ├── css/
							|   |-- |-- |-- style.css
							|   |-- |-- |-- style.css.map
							|   |-- |-- |-- styles.min.css
							|   |-- |-- |-- styles.min.css.map
							├── |-- icon-fonts/
							├── |-- images/
							├── |-- libs/
							├── |-- scss/              
							|   |-- |-- bootstrap/
							|   |-- |-- custom/
							|   |-- |-- menu-styles/
							|   |-- |-- pages/
							|   |-- |-- utils/
							|   |-- |-- _switcher.scss
							|   |-- |-- _variables.scss
							|   |-- |-- bootstrap.scss
							|   |-- |-- icons.scss
							|   |-- |-- styles.scss
							├── |-- video/  
							|   ├── environments
							|   |   ├── environment.prod.ts
							|   |   └── environment.ts
							|   ├── htaccess
							|   ├── favicon.ico
							|   ├── index.html
							|   ├── main.ts
							|   ├── styles.scss
							├── editorconfig
							├── gitignore
							├── angular.json
							├── package-lock.json
							├── package.json
							├── README.md
							├── tsconfig.app.json
							├── tsconfig.json
							└── tsconfig.spec.json
Folders Description
  • Ynex - Angular Bootstrap Admin Dashboard Template / : Root template folder contain all angular, ts, css, scss, images and other files.
    • assets/ : Folder contain all the Ynex Template assets which has css, scss, and images.
      • css/: Folder contain assets which has complete styles.
        • styles.css : Main style sheet for template
      • iconfonts/: Folder contain all types of icons which is used in this template.
      • images/ : Template images.
      • scss/ : Folder contain all pages scss files and all plugins scss files also included.
      • Video/ : Folder contains video used in this template.
    • Environments/ : Folder contain all the Ynex Template Environments which has Firebase Authentications.
    • favicon.ico/ : The favicon.ico file in Angular is used as the application's icon displayed in the browser tab or bookmark bar..
    • index.html : The index.html file in Angular is the main entry point that loads the necessary scripts and stylesheets, renders the application, and handles dynamic content..
    • main.ts : The main.ts file in Angular is responsible for bootstrapping the application and initializing the root module.
    • styles.scss : Folder contain all the Ynex Template styles which has manage global styles for your application, including CSS rules, variables, mixins, and imports.
  • package.json : package json file.