Folder Structure - SmartOffice-Legends/pet-health-care GitHub Wiki

Boilerplate - folder structure created by Angular CLI

├── app/
│   ├── core
│   ├── data
│   ├── modules
│   ├── shared
│   ├── app-routing.module.ts
│   ├── app.component.css
│   ├── app.component.html
│   ├── app.component.spec.ts
│   ├── app.component.ts
│   └── app.module.ts
├── assets
├── environments/
│   ├── environment.ts
│   └── environment.prod.ts
└── styles/
    └── styles.css (concatenated target stylesheet file)

Target folder structure in project

├── app/
│   ├── core/
│   │   ├── guards
│   │   ├── interceptors
│   │   └── services
│   ├── pages/
│   │   ├── user/
│   │   │   ├── user-login
│   │   │   ├── user-sign-up
│   │   │   ├── user-reset-password
│   │   │   └── user.module.ts
│   │   ├── home
│   │   ├── error
│   │   ├── template/
│   │   │   ├── footer
│   │   │   └── header
│   │   ├── common-layout-routing.module.ts
│   │   ├── common-layout.component.html
│   │   ├── common-layout.component.scss
│   │   ├── common-layout.component.ts
│   │   └── common-layout.module.ts
│   ├── shared/
│   │   ├── components
│   │   ├── directives
│   │   └── pipes
│   ├── app-routing.module.ts
│   ├── app.component.css
│   ├── app.component.html
│   ├── app.component.spec.ts
│   ├── app.component.ts
│   └── app.module.ts
├── assets
├── environments/
│   ├── environment.ts
│   ├── environment.prod.ts
│   └── firbase-config/
│       ├── database.rules.json
│       ├── firestore.indexes.json
│       └── firestore.rules
└── styles/
    └── styles.css (concatenated target stylesheet file)
⚠️ **GitHub.com Fallback** ⚠️