Directory Structure(Important Files)
.
├── client                            # Angular client(localhost:4200)
│   ├── node_modules                  # Saved packages 
│   ├── src                           # Client files
│   │   ├── app                       # Client Code
│   │   │   ├── archived              # Archived Component
│   │   │   ├── category-detail       # Category-Detail/Documents Component
│   │   │   ├── change-password       # Change-Password Component
│   │   │   ├── dashboard             # Dashboard/Categories Component
│   │   │   ├── login                 # Login Component
│   │   │   ├── profile               # Profile Component
│   │   │   ├── register              # Register Component
│   │   │   ├── services              # Services Directory
│   │   │   ├── supervisor            # Supervisor Component
│   │   │   ├── videos                # Videos Component
│   │   │   ├── watch-orders          # Watch-Orders Component
│   │   │   ├── app.component.html    # App Component html
│   │   │   ├── app.component.css     # App Component css
│   │   │   ├── app.component.ts      # App Component typescript file
│   │   │   └── app.module.ts         # App Module: includes routes, components, modules, and services
│   │   ├── assets                    # Assets
│   │   │   ├── img                   # Images
│   │   │   └── uploads               # VRC Documents are stored here.
│   │   └── index.html                # Index page for client. Bootstrap is included here.
│   ├── angular.json                  # Include, styles, scripts, and assets
│   └── proxy-conf.json               # Proxy routes to server
├── database                
│   └── db.js                         # Database configuration file
├── models                            # Models for each db table
├── routes                            # Routes for each model
├── README.MD                         # Install/run project instructions
└── server.js                         # Server(localhost:3000)
