gitextract_pe7d7h_7/ ├── .gitignore ├── AspNetCorePostgreSQLDockerApp/ │ ├── .docker/ │ │ └── wait-for-postgres.sh │ ├── .dockerignore │ ├── APIs/ │ │ └── CustomersServiceController.cs │ ├── AspNetCorePostgreSQLDockerApp.csproj │ ├── Client/ │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── README.md │ │ ├── angular.json │ │ ├── browserslist │ │ ├── e2e/ │ │ │ ├── protractor.conf.js │ │ │ ├── src/ │ │ │ │ ├── app.e2e-spec.ts │ │ │ │ └── app.po.ts │ │ │ └── tsconfig.e2e.json │ │ ├── package.json │ │ ├── src/ │ │ │ ├── app/ │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.css │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.spec.ts │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── core/ │ │ │ │ │ └── data.service.ts │ │ │ │ ├── customers/ │ │ │ │ │ ├── customers.component.html │ │ │ │ │ └── customers.component.ts │ │ │ │ └── shared/ │ │ │ │ └── interfaces.ts │ │ │ ├── assets/ │ │ │ │ └── .gitkeep │ │ │ ├── environments/ │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── index.html │ │ │ ├── karma.conf.js │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ ├── test.ts │ │ │ ├── tsconfig.app.json │ │ │ ├── tsconfig.spec.json │ │ │ └── tslint.json │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── Controllers/ │ │ ├── CustomersController.cs │ │ └── HomeController.cs │ ├── Models/ │ │ ├── Customer.cs │ │ ├── DockerCommand.cs │ │ ├── DockerCommandExample.cs │ │ ├── Order.cs │ │ └── State.cs │ ├── Program.cs │ ├── Properties/ │ │ └── launchSettings.json │ ├── Repository/ │ │ ├── CustomersDbContext.cs │ │ ├── CustomersDbSeeder.cs │ │ ├── CustomersRepository.cs │ │ ├── DockerCommandsDbContext.cs │ │ ├── DockerCommandsDbSeeder.cs │ │ ├── DockerCommandsRepository.cs │ │ ├── ICustomersRepository.cs │ │ └── IDockerCommandsRepository.cs │ ├── Startup.cs │ ├── Views/ │ │ ├── Customers/ │ │ │ └── Index.cshtml │ │ ├── Home/ │ │ │ └── Index.cshtml │ │ ├── Shared/ │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.json │ ├── aspnetcore.dockerfile │ ├── aspnetcore.prod.dockerfile │ ├── docker-compose.azure.yml │ ├── docker-compose.prod.yml │ ├── docker-compose.yml │ └── wwwroot/ │ ├── css/ │ │ └── site.css │ ├── index2.html │ └── web.config ├── AspNetCorePostgreSQLDockerApp.sln └── README.md