├── .gitattributes ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── CreateVMBasic.PNG ├── LICENSE ├── Labfiles ├── AZ-400T05-ImplemntgAppInfra │ └── Labfiles │ │ ├── M04 │ │ ├── DeployusingChef │ │ │ ├── env │ │ │ │ ├── ChefPartsUnlimitedMRP.json │ │ │ │ ├── Configure-Chef-Workstation.ps1 │ │ │ │ ├── configure_chefserver.sh │ │ │ │ ├── deploychef.json │ │ │ │ └── deploylinux.json │ │ │ └── final │ │ │ │ └── default.rb │ │ └── Puppet │ │ │ ├── env │ │ │ ├── PuppetPartsUnlimitedMRP.json │ │ │ └── install_puppetenterprise.sh │ │ │ └── final │ │ │ └── init.pp │ │ ├── ansible │ │ ├── ARMtemplate-newVM.json │ │ ├── create_vm.yml │ │ ├── cron.yml │ │ ├── delete_vm.yml │ │ ├── httpd.yml │ │ ├── index.html │ │ ├── new_ARM_deployment.yml │ │ ├── new_vm_web.yml │ │ └── nginx.yml │ │ └── automate_nginx.sh ├── DevOps200.1x-PracticesandPrinciples │ ├── Mod03 │ │ └── python-ci-example-master │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── app │ │ │ ├── __init__.py │ │ │ ├── src │ │ │ │ ├── __init__.py │ │ │ │ └── app.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ └── app-test.py │ │ │ ├── images │ │ │ ├── buids.png │ │ │ ├── pr.png │ │ │ ├── pull.png │ │ │ ├── travis.png │ │ │ └── url.png │ │ │ └── requirements.txt │ └── Mod04 │ │ └── load_testing_locust-master │ │ ├── .gitignore │ │ ├── README.md │ │ ├── __init__.py │ │ ├── app │ │ ├── __init__.py │ │ └── app.py │ │ ├── images │ │ ├── locust_charts.png │ │ ├── locust_home.png │ │ └── locust_stats.png │ │ └── locustfile.py ├── DevOps200.2x-InfrastructureasCode │ ├── DeployusingChef │ │ ├── env │ │ │ ├── ChefPartsUnlimitedMRP.json │ │ │ ├── Configure-Chef-Workstation.ps1 │ │ │ ├── configure_chefserver.sh │ │ │ ├── deploychef.json │ │ │ └── deploylinux.json │ │ └── final │ │ │ └── default.rb │ └── Puppet │ │ ├── env │ │ ├── PuppetPartsUnlimitedMRP.json │ │ └── install_puppetenterprise.sh │ │ └── final │ │ └── init.pp ├── DevOps200.3x-CIandCD │ ├── CDwithHostedAgent │ │ └── env │ │ │ ├── ContinuousDeploymentPartsUnlimitedMRP.json │ │ │ └── install_mrp_dependencies.sh │ ├── CDwithJenkins │ │ └── env │ │ │ ├── ContinuousDeploymentPartsUnlimitedMRP.json │ │ │ ├── JenkinsMaster.json │ │ │ ├── deploy_mrp_app.sh │ │ │ └── install_mrp_dependencies.sh │ └── CDwithLocalAgent │ │ └── env │ │ ├── ContinuousDeploymentCustomAgentPartsUnlimitedMRP.json │ │ └── install_vsts_agent_and_mrp_dependencies.sh └── ansible-azure-lab │ ├── ARMtemplate-newVM.json │ ├── LICENSE │ ├── README.md │ ├── VERSION │ ├── ansible-azure-READY.docx │ ├── ansible_arch.png │ ├── delete_vm.yml │ ├── httpd.yml │ ├── index.html │ ├── new_ARM_deployment.yml │ └── new_vm_web.yml ├── README.md ├── SECURITY.md ├── deploy ├── Build-MRP-App-Manually.md ├── Install-Build-Dependencies.sh ├── MongoRecords.js ├── SSH-MRP-Artifacts.ps1 ├── SSH-MRP-BDD-Security.ps1 ├── azurestack │ ├── customscripts │ │ ├── chef │ │ │ ├── install_chef.sh │ │ │ └── readme.md │ │ ├── install_updates.sh │ │ ├── jenkins │ │ │ └── install_jenkins_1604.sh │ │ ├── linux_extension │ │ │ └── manifest.json │ │ ├── puppet │ │ │ └── install_puppet_1604.sh │ │ └── readme.md │ ├── instances │ │ ├── chef_node │ │ │ ├── AddChefNode.json │ │ │ └── readme.md │ │ ├── chef_standalone │ │ │ ├── Chef.ChefServer.1.0.0.azpkg │ │ │ ├── Chef.ChefServer │ │ │ │ ├── DeploymentTemplates │ │ │ │ │ └── ChefDeploy.json │ │ │ │ ├── Icons │ │ │ │ │ ├── Hero.png │ │ │ │ │ ├── Large.png │ │ │ │ │ ├── Medium.png │ │ │ │ │ ├── Small.png │ │ │ │ │ └── Wide.png │ │ │ │ ├── Manifest.json │ │ │ │ ├── UIDefinition.json │ │ │ │ └── strings │ │ │ │ │ └── resources.resjson │ │ │ └── readme.md │ │ ├── chef_workstation │ │ │ ├── AddChefWorkstation.json │ │ │ └── readme.md │ │ ├── jenkins_mrp │ │ │ ├── PartsUnlimitedMRP.MRPwithJenkins.1.0.0.azpkg │ │ │ ├── PartsUnlimitedMRP.MRPwithJenkins │ │ │ │ ├── DeploymentTemplates │ │ │ │ │ └── MRPwithJenkinsDeploy.json │ │ │ │ ├── Icons │ │ │ │ │ ├── Hero.png │ │ │ │ │ ├── Large.png │ │ │ │ │ ├── Medium.png │ │ │ │ │ ├── Small.png │ │ │ │ │ └── Wide.png │ │ │ │ ├── Manifest.json │ │ │ │ ├── UIDefinition.json │ │ │ │ └── strings │ │ │ │ │ └── resources.resjson │ │ │ └── readme.md │ │ ├── jenkins_standalone │ │ │ ├── TheJenkinsProject.Jenkins.1.0.0.azpkg │ │ │ ├── TheJenkinsProject.Jenkins │ │ │ │ ├── DeploymentTemplates │ │ │ │ │ └── JenkinsDeploy.json │ │ │ │ ├── Icons │ │ │ │ │ ├── Hero.png │ │ │ │ │ ├── Large.png │ │ │ │ │ ├── Medium.png │ │ │ │ │ ├── Small.png │ │ │ │ │ └── Wide.png │ │ │ │ ├── Manifest.json │ │ │ │ ├── UIDefinition.json │ │ │ │ └── strings │ │ │ │ │ └── resources.resjson │ │ │ └── readme.md │ │ ├── parts_unlimited_SSH_mrp_base │ │ │ ├── PartsUnlimited.MRPSSH.1.0.0.azpkg │ │ │ ├── PartsUnlimitedSSH.Ubuntu1604 │ │ │ │ ├── DeploymentTemplates │ │ │ │ │ └── PartsUnlimitedSSHMRP.json │ │ │ │ ├── Icons │ │ │ │ │ ├── Hero.png │ │ │ │ │ ├── Large.png │ │ │ │ │ ├── Medium.png │ │ │ │ │ ├── Small.png │ │ │ │ │ └── Wide.png │ │ │ │ ├── Manifest.json │ │ │ │ ├── UIDefinition.json │ │ │ │ └── strings │ │ │ │ │ └── resources.resjson │ │ │ └── readme.md │ │ ├── parts_unlimited_mrp_base │ │ │ ├── PartsUnlimited.MRP.1.0.0.azpkg │ │ │ ├── PartsUnlimited.Ubuntu1604 │ │ │ │ ├── DeploymentTemplates │ │ │ │ │ └── PartsUnlimitedMRP.json │ │ │ │ ├── Icons │ │ │ │ │ ├── Hero.png │ │ │ │ │ ├── Large.png │ │ │ │ │ ├── Medium.png │ │ │ │ │ ├── Small.png │ │ │ │ │ └── Wide.png │ │ │ │ ├── Manifest.json │ │ │ │ ├── UIDefinition.json │ │ │ │ └── strings │ │ │ │ │ └── resources.resjson │ │ │ ├── install_mrp_dependencies_1604.sh │ │ │ └── readme.md │ │ ├── puppet_node │ │ │ ├── AddPuppetNode.json │ │ │ └── readme.md │ │ ├── puppet_standalone │ │ │ ├── Puppet.PuppetEnterprise.1.0.0.azpkg │ │ │ ├── Puppet.PuppetEnterprise │ │ │ │ ├── DeploymentTemplates │ │ │ │ │ └── PuppetDeploy.json │ │ │ │ ├── Icons │ │ │ │ │ ├── Hero.png │ │ │ │ │ ├── Large.png │ │ │ │ │ ├── Medium.png │ │ │ │ │ ├── Small.png │ │ │ │ │ └── Wide.png │ │ │ │ ├── Manifest.json │ │ │ │ ├── UIDefinition.json │ │ │ │ └── strings │ │ │ │ │ └── resources.resjson │ │ │ └── readme.md │ │ ├── ubuntu_server_1404_base │ │ │ ├── Canonical.Ubuntu1404 │ │ │ │ ├── DeploymentTemplates │ │ │ │ │ └── UbuntuServer1404.json │ │ │ │ ├── Icons │ │ │ │ │ ├── Hero.png │ │ │ │ │ ├── Large.png │ │ │ │ │ ├── Medium.png │ │ │ │ │ ├── Small.png │ │ │ │ │ └── Wide.png │ │ │ │ ├── Manifest.json │ │ │ │ ├── UIDefinition.json │ │ │ │ └── strings │ │ │ │ │ └── resources.resjson │ │ │ ├── Canonical.UbuntuServer.1.0.0.azpkg │ │ │ └── readme.md │ │ └── ubuntu_server_1604_base │ │ │ ├── Canonical.UbuntuServer.1.0.0.azpkg │ │ │ ├── Canonical.UbuntuServer.1.0.0 │ │ │ ├── DeploymentTemplates │ │ │ │ └── UbuntuServer1604.json │ │ │ ├── Icons │ │ │ │ ├── Hero.png │ │ │ │ ├── Large.png │ │ │ │ ├── Medium.png │ │ │ │ ├── Small.png │ │ │ │ └── Wide.png │ │ │ ├── Manifest.json │ │ │ ├── UIDefinition.json │ │ │ └── strings │ │ │ │ └── resources.resjson │ │ │ └── readme.md │ └── readme.md ├── deploy_mrp_app.sh ├── docker │ ├── BuildAndRun.sh │ ├── Clients │ │ ├── Dockerfile │ │ └── drop │ │ │ └── PUT YOUR WAR FILE HERE │ ├── Database │ │ ├── Dockerfile │ │ └── drop │ │ │ └── MongoRecords.js │ ├── Order │ │ ├── Dockerfile │ │ └── drop │ │ │ ├── PUT YOUR JAR FILE HERE │ │ │ └── run.sh │ └── StopAndRemove.sh └── install_mrp_dependencies.sh └── src ├── Backend ├── IntegrationService │ ├── IntegrationService.iml │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── src │ │ └── main │ │ ├── java │ │ └── integration │ │ │ ├── Constants.java │ │ │ ├── Main.java │ │ │ ├── infrastructure │ │ │ ├── ConfigurationHelpers.java │ │ │ └── ConfigurationManager.java │ │ │ ├── models │ │ │ ├── QueueResponse.java │ │ │ ├── mrp │ │ │ │ ├── CatalogItem.java │ │ │ │ ├── DeliveryAddress.java │ │ │ │ ├── Order.java │ │ │ │ ├── PhoneInfo.java │ │ │ │ ├── Quote.java │ │ │ │ ├── QuoteItemInfo.java │ │ │ │ ├── ShipmentEventInfo.java │ │ │ │ └── ShipmentRecord.java │ │ │ └── website │ │ │ │ ├── OrderItem.java │ │ │ │ ├── OrderMessage.java │ │ │ │ ├── ProductItem.java │ │ │ │ └── ProductMessage.java │ │ │ ├── scheduled │ │ │ ├── CreateOrderProcessTask.java │ │ │ └── UpdateProductProcessTask.java │ │ │ └── services │ │ │ ├── MrpConnectService.java │ │ │ ├── QueueFactory.java │ │ │ └── QueueService.java │ │ └── resources │ │ └── application.properties └── OrderService │ ├── .gitignore │ ├── README │ ├── README.md │ ├── build.gradle │ ├── build.war.gradle │ ├── buildSrc │ ├── buildSrc.iml │ └── src │ │ └── main │ │ └── groovy │ │ └── com │ │ └── microsoft │ │ └── appinsights │ │ ├── BuildInformationTask.groovy │ │ └── CleanBuildInformationTask.groovy │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── removeBuild.bat │ ├── scripts │ ├── cat001.json │ ├── cat002.json │ ├── cat003.json │ ├── cat004.json │ ├── createorder.sh │ ├── dealer1.json │ ├── getenv.sh │ ├── quote1.json │ ├── quote2.json │ ├── schema.psql │ ├── setup.sh │ ├── setupdocker.sh │ └── update.sh │ ├── src │ ├── main │ │ ├── java │ │ │ └── smpl │ │ │ │ └── ordering │ │ │ │ ├── AppInsightsFilter.java │ │ │ │ ├── BadRequestException.java │ │ │ │ ├── ConflictingRequestException.java │ │ │ │ ├── MongoDBProperties.java │ │ │ │ ├── OrderingConfiguration.java │ │ │ │ ├── OrderingInitializer.java │ │ │ │ ├── OrderingServiceProperties.java │ │ │ │ ├── PostgresqlProperties.java │ │ │ │ ├── PropertyHelper.java │ │ │ │ ├── SimpleCORSFilter.java │ │ │ │ ├── TestPath.java │ │ │ │ ├── Utility.java │ │ │ │ ├── controllers │ │ │ │ ├── CatalogController.java │ │ │ │ ├── DealerController.java │ │ │ │ ├── OrderController.java │ │ │ │ ├── PingController.java │ │ │ │ ├── QuoteController.java │ │ │ │ └── ShipmentController.java │ │ │ │ ├── models │ │ │ │ ├── CatalogItem.java │ │ │ │ ├── DealerInfo.java │ │ │ │ ├── Delivery.java │ │ │ │ ├── DeliveryAddress.java │ │ │ │ ├── Order.java │ │ │ │ ├── OrderEventInfo.java │ │ │ │ ├── OrderStatus.java │ │ │ │ ├── OrderUpdateInfo.java │ │ │ │ ├── PhoneInfo.java │ │ │ │ ├── Quote.java │ │ │ │ ├── QuoteItemInfo.java │ │ │ │ ├── ShipmentEventInfo.java │ │ │ │ └── ShipmentRecord.java │ │ │ │ └── repositories │ │ │ │ ├── CatalogItemsRepository.java │ │ │ │ ├── DealersRepository.java │ │ │ │ ├── OrderRepository.java │ │ │ │ ├── QuoteRepository.java │ │ │ │ ├── RepositoryFactory.java │ │ │ │ ├── ShipmentRepository.java │ │ │ │ ├── mock │ │ │ │ ├── MockCatalogItemsRepository.java │ │ │ │ ├── MockDealersRepository.java │ │ │ │ ├── MockOrderRepository.java │ │ │ │ ├── MockQuoteRepository.java │ │ │ │ └── MockShipmentRepository.java │ │ │ │ └── mongodb │ │ │ │ ├── MongoCatalogItemsRepository.java │ │ │ │ ├── MongoDealersRepository.java │ │ │ │ ├── MongoOperationsWithRetry.java │ │ │ │ ├── MongoOrderRepository.java │ │ │ │ ├── MongoQuoteRepository.java │ │ │ │ ├── MongoShipmentRepository.java │ │ │ │ └── models │ │ │ │ ├── CatalogItem.java │ │ │ │ ├── Dealer.java │ │ │ │ ├── OrderDetails.java │ │ │ │ ├── QuoteDetails.java │ │ │ │ └── ShipmentDetails.java │ │ └── resources │ │ │ ├── ApplicationInsights.xml │ │ │ ├── application.properties │ │ │ └── buildinfo.properties │ └── test │ │ ├── java │ │ └── smpl │ │ │ └── ordering │ │ │ ├── ConfigurationRule.java │ │ │ ├── TestOrderingConfiguration.java │ │ │ ├── UtilityTest.java │ │ │ ├── controllers │ │ │ ├── CatalogControllerTest.java │ │ │ ├── DealerControllerTest.java │ │ │ ├── OrderControllerTest.java │ │ │ ├── QuoteControllerTest.java │ │ │ └── ShipmentControllerTest.java │ │ │ └── repositories │ │ │ ├── CatalogItemsRepositoryTest.java │ │ │ ├── DealersRepositoryTest.java │ │ │ ├── OrderRepositoryTest.java │ │ │ ├── QuoteRepositoryTest.java │ │ │ ├── ShipmentRepositoryTest.java │ │ │ ├── mock │ │ │ └── test │ │ │ │ ├── MockCatalogItemsRepositoryTest.java │ │ │ │ ├── MockDealersRepositoryTest.java │ │ │ │ ├── MockOrderRepositoryTest.java │ │ │ │ ├── MockQuoteRepositoryTest.java │ │ │ │ └── MockShipmentRepositoryTest.java │ │ │ └── mongodb │ │ │ └── test │ │ │ ├── IntegrationTests.java │ │ │ ├── MongoCatalogItemsRepositoryTest.java │ │ │ ├── MongoDealersRepositoryTest.java │ │ │ ├── MongoOrderRepositoryTest.java │ │ │ ├── MongoQuoteRepositoryTest.java │ │ │ └── MongoShipmentRepositoryTest.java │ │ └── resources │ │ └── application.properties │ └── version.properties └── Clients ├── README.md ├── Web ├── controls │ └── edittools │ │ ├── edittools.css │ │ ├── edittools.html │ │ └── edittools.js ├── css │ └── default.css ├── default.html ├── images │ ├── CatalogIcon.png │ ├── DealersIcon.png │ ├── DeliveryIcon.png │ ├── FabrikamIcon.png │ ├── OrderIcon.png │ ├── QuoteIcon.png │ ├── SettingsIcon.png │ ├── hamburger.png │ ├── logo.scale-100.png │ ├── smalllogo.scale-100.png │ ├── splashscreen.scale-100.png │ ├── storelogo.scale-100.png │ └── unlimited_logo.png ├── index.html ├── js │ ├── data.js │ ├── date.js │ ├── default.js │ ├── navigator.js │ └── serverconfig.js ├── pages │ ├── catalog │ │ ├── catalog.css │ │ ├── catalog.html │ │ └── catalog.js │ ├── dealers │ │ ├── dealers.css │ │ ├── dealers.html │ │ └── dealers.js │ ├── deliveries │ │ ├── deliveries.css │ │ ├── deliveries.html │ │ └── deliveries.js │ ├── extras │ │ ├── extras.css │ │ ├── extras.html │ │ └── extras.js │ ├── main │ │ ├── main.css │ │ ├── main.html │ │ ├── main.js │ │ └── main_files │ │ │ ├── CatalogIcon.png │ │ │ ├── DealersIcon.png │ │ │ ├── DeliveryIcon.png │ │ │ ├── FabrikamIcon.png │ │ │ ├── OrderIcon.png │ │ │ ├── QuoteIcon.png │ │ │ ├── main.js │ │ │ └── unlimited_logo.png │ ├── orderevents │ │ ├── orderevents.css │ │ ├── orderevents.html │ │ └── orderevents.js │ ├── orders │ │ ├── orders.css │ │ ├── orders.html │ │ └── orders.js │ └── quotes │ │ ├── quotes.css │ │ ├── quotes.html │ │ └── quotes.js └── winjs │ ├── css │ ├── ui-dark.css │ └── ui-light.css │ ├── fonts │ └── symbols.ttf │ └── js │ └── winjs.js ├── build.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── removeBuild.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CreateVMBasic.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/CreateVMBasic.PNG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/LICENSE -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/DeployusingChef/env/ChefPartsUnlimitedMRP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/DeployusingChef/env/ChefPartsUnlimitedMRP.json -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/DeployusingChef/env/Configure-Chef-Workstation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/DeployusingChef/env/Configure-Chef-Workstation.ps1 -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/DeployusingChef/env/configure_chefserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/DeployusingChef/env/configure_chefserver.sh -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/DeployusingChef/env/deploychef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/DeployusingChef/env/deploychef.json -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/DeployusingChef/env/deploylinux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/DeployusingChef/env/deploylinux.json -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/DeployusingChef/final/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/DeployusingChef/final/default.rb -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/Puppet/env/PuppetPartsUnlimitedMRP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/Puppet/env/PuppetPartsUnlimitedMRP.json -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/Puppet/env/install_puppetenterprise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/Puppet/env/install_puppetenterprise.sh -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/Puppet/final/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/M04/Puppet/final/init.pp -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/ARMtemplate-newVM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/ARMtemplate-newVM.json -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/create_vm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/create_vm.yml -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/cron.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/cron.yml -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/delete_vm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/delete_vm.yml -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/httpd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/httpd.yml -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/index.html -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/new_ARM_deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/new_ARM_deployment.yml -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/new_vm_web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/new_vm_web.yml -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/nginx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/ansible/nginx.yml -------------------------------------------------------------------------------- /Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/automate_nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/AZ-400T05-ImplemntgAppInfra/Labfiles/automate_nginx.sh -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/.gitignore -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/.travis.yml -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/README.md -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/app/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/app/src/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/app/src/app.py -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/app/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/app/tests/app-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/app/tests/app-test.py -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/images/buids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/images/buids.png -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/images/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/images/pr.png -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/images/pull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/images/pull.png -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/images/travis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/images/travis.png -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/images/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/images/url.png -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod03/python-ci-example-master/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod04/load_testing_locust-master/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.1x-PracticesandPrinciples/Mod04/load_testing_locust-master/.gitignore -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod04/load_testing_locust-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.1x-PracticesandPrinciples/Mod04/load_testing_locust-master/README.md -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod04/load_testing_locust-master/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod04/load_testing_locust-master/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod04/load_testing_locust-master/app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.1x-PracticesandPrinciples/Mod04/load_testing_locust-master/app/app.py -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod04/load_testing_locust-master/images/locust_charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.1x-PracticesandPrinciples/Mod04/load_testing_locust-master/images/locust_charts.png -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod04/load_testing_locust-master/images/locust_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.1x-PracticesandPrinciples/Mod04/load_testing_locust-master/images/locust_home.png -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod04/load_testing_locust-master/images/locust_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.1x-PracticesandPrinciples/Mod04/load_testing_locust-master/images/locust_stats.png -------------------------------------------------------------------------------- /Labfiles/DevOps200.1x-PracticesandPrinciples/Mod04/load_testing_locust-master/locustfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.1x-PracticesandPrinciples/Mod04/load_testing_locust-master/locustfile.py -------------------------------------------------------------------------------- /Labfiles/DevOps200.2x-InfrastructureasCode/DeployusingChef/env/ChefPartsUnlimitedMRP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.2x-InfrastructureasCode/DeployusingChef/env/ChefPartsUnlimitedMRP.json -------------------------------------------------------------------------------- /Labfiles/DevOps200.2x-InfrastructureasCode/DeployusingChef/env/Configure-Chef-Workstation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.2x-InfrastructureasCode/DeployusingChef/env/Configure-Chef-Workstation.ps1 -------------------------------------------------------------------------------- /Labfiles/DevOps200.2x-InfrastructureasCode/DeployusingChef/env/configure_chefserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.2x-InfrastructureasCode/DeployusingChef/env/configure_chefserver.sh -------------------------------------------------------------------------------- /Labfiles/DevOps200.2x-InfrastructureasCode/DeployusingChef/env/deploychef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.2x-InfrastructureasCode/DeployusingChef/env/deploychef.json -------------------------------------------------------------------------------- /Labfiles/DevOps200.2x-InfrastructureasCode/DeployusingChef/env/deploylinux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.2x-InfrastructureasCode/DeployusingChef/env/deploylinux.json -------------------------------------------------------------------------------- /Labfiles/DevOps200.2x-InfrastructureasCode/DeployusingChef/final/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.2x-InfrastructureasCode/DeployusingChef/final/default.rb -------------------------------------------------------------------------------- /Labfiles/DevOps200.2x-InfrastructureasCode/Puppet/env/PuppetPartsUnlimitedMRP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.2x-InfrastructureasCode/Puppet/env/PuppetPartsUnlimitedMRP.json -------------------------------------------------------------------------------- /Labfiles/DevOps200.2x-InfrastructureasCode/Puppet/env/install_puppetenterprise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.2x-InfrastructureasCode/Puppet/env/install_puppetenterprise.sh -------------------------------------------------------------------------------- /Labfiles/DevOps200.2x-InfrastructureasCode/Puppet/final/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.2x-InfrastructureasCode/Puppet/final/init.pp -------------------------------------------------------------------------------- /Labfiles/DevOps200.3x-CIandCD/CDwithHostedAgent/env/ContinuousDeploymentPartsUnlimitedMRP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.3x-CIandCD/CDwithHostedAgent/env/ContinuousDeploymentPartsUnlimitedMRP.json -------------------------------------------------------------------------------- /Labfiles/DevOps200.3x-CIandCD/CDwithHostedAgent/env/install_mrp_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.3x-CIandCD/CDwithHostedAgent/env/install_mrp_dependencies.sh -------------------------------------------------------------------------------- /Labfiles/DevOps200.3x-CIandCD/CDwithJenkins/env/ContinuousDeploymentPartsUnlimitedMRP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.3x-CIandCD/CDwithJenkins/env/ContinuousDeploymentPartsUnlimitedMRP.json -------------------------------------------------------------------------------- /Labfiles/DevOps200.3x-CIandCD/CDwithJenkins/env/JenkinsMaster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.3x-CIandCD/CDwithJenkins/env/JenkinsMaster.json -------------------------------------------------------------------------------- /Labfiles/DevOps200.3x-CIandCD/CDwithJenkins/env/deploy_mrp_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.3x-CIandCD/CDwithJenkins/env/deploy_mrp_app.sh -------------------------------------------------------------------------------- /Labfiles/DevOps200.3x-CIandCD/CDwithJenkins/env/install_mrp_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.3x-CIandCD/CDwithJenkins/env/install_mrp_dependencies.sh -------------------------------------------------------------------------------- /Labfiles/DevOps200.3x-CIandCD/CDwithLocalAgent/env/ContinuousDeploymentCustomAgentPartsUnlimitedMRP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.3x-CIandCD/CDwithLocalAgent/env/ContinuousDeploymentCustomAgentPartsUnlimitedMRP.json -------------------------------------------------------------------------------- /Labfiles/DevOps200.3x-CIandCD/CDwithLocalAgent/env/install_vsts_agent_and_mrp_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/DevOps200.3x-CIandCD/CDwithLocalAgent/env/install_vsts_agent_and_mrp_dependencies.sh -------------------------------------------------------------------------------- /Labfiles/ansible-azure-lab/ARMtemplate-newVM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/ansible-azure-lab/ARMtemplate-newVM.json -------------------------------------------------------------------------------- /Labfiles/ansible-azure-lab/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/ansible-azure-lab/LICENSE -------------------------------------------------------------------------------- /Labfiles/ansible-azure-lab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/ansible-azure-lab/README.md -------------------------------------------------------------------------------- /Labfiles/ansible-azure-lab/VERSION: -------------------------------------------------------------------------------- 1 | v0.2 2 | -------------------------------------------------------------------------------- /Labfiles/ansible-azure-lab/ansible-azure-READY.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/ansible-azure-lab/ansible-azure-READY.docx -------------------------------------------------------------------------------- /Labfiles/ansible-azure-lab/ansible_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/ansible-azure-lab/ansible_arch.png -------------------------------------------------------------------------------- /Labfiles/ansible-azure-lab/delete_vm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/ansible-azure-lab/delete_vm.yml -------------------------------------------------------------------------------- /Labfiles/ansible-azure-lab/httpd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/ansible-azure-lab/httpd.yml -------------------------------------------------------------------------------- /Labfiles/ansible-azure-lab/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/ansible-azure-lab/index.html -------------------------------------------------------------------------------- /Labfiles/ansible-azure-lab/new_ARM_deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/ansible-azure-lab/new_ARM_deployment.yml -------------------------------------------------------------------------------- /Labfiles/ansible-azure-lab/new_vm_web.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/Labfiles/ansible-azure-lab/new_vm_web.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/SECURITY.md -------------------------------------------------------------------------------- /deploy/Build-MRP-App-Manually.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/Build-MRP-App-Manually.md -------------------------------------------------------------------------------- /deploy/Install-Build-Dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/Install-Build-Dependencies.sh -------------------------------------------------------------------------------- /deploy/MongoRecords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/MongoRecords.js -------------------------------------------------------------------------------- /deploy/SSH-MRP-Artifacts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/SSH-MRP-Artifacts.ps1 -------------------------------------------------------------------------------- /deploy/SSH-MRP-BDD-Security.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/SSH-MRP-BDD-Security.ps1 -------------------------------------------------------------------------------- /deploy/azurestack/customscripts/chef/install_chef.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/customscripts/chef/install_chef.sh -------------------------------------------------------------------------------- /deploy/azurestack/customscripts/chef/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /deploy/azurestack/customscripts/install_updates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/customscripts/install_updates.sh -------------------------------------------------------------------------------- /deploy/azurestack/customscripts/jenkins/install_jenkins_1604.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/customscripts/jenkins/install_jenkins_1604.sh -------------------------------------------------------------------------------- /deploy/azurestack/customscripts/linux_extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/customscripts/linux_extension/manifest.json -------------------------------------------------------------------------------- /deploy/azurestack/customscripts/puppet/install_puppet_1604.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/customscripts/puppet/install_puppet_1604.sh -------------------------------------------------------------------------------- /deploy/azurestack/customscripts/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /deploy/azurestack/instances/chef_node/AddChefNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/chef_node/AddChefNode.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/chef_node/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /deploy/azurestack/instances/chef_standalone/Chef.ChefServer.1.0.0.azpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/chef_standalone/Chef.ChefServer.1.0.0.azpkg -------------------------------------------------------------------------------- /deploy/azurestack/instances/chef_standalone/Chef.ChefServer/DeploymentTemplates/ChefDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/chef_standalone/Chef.ChefServer/DeploymentTemplates/ChefDeploy.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/chef_standalone/Chef.ChefServer/Icons/Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/chef_standalone/Chef.ChefServer/Icons/Hero.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/chef_standalone/Chef.ChefServer/Icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/chef_standalone/Chef.ChefServer/Icons/Large.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/chef_standalone/Chef.ChefServer/Icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/chef_standalone/Chef.ChefServer/Icons/Medium.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/chef_standalone/Chef.ChefServer/Icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/chef_standalone/Chef.ChefServer/Icons/Small.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/chef_standalone/Chef.ChefServer/Icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/chef_standalone/Chef.ChefServer/Icons/Wide.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/chef_standalone/Chef.ChefServer/Manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/chef_standalone/Chef.ChefServer/Manifest.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/chef_standalone/Chef.ChefServer/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/chef_standalone/Chef.ChefServer/UIDefinition.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/chef_standalone/Chef.ChefServer/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/chef_standalone/Chef.ChefServer/strings/resources.resjson -------------------------------------------------------------------------------- /deploy/azurestack/instances/chef_standalone/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /deploy/azurestack/instances/chef_workstation/AddChefWorkstation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/chef_workstation/AddChefWorkstation.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/chef_workstation/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins.1.0.0.azpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins.1.0.0.azpkg -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/DeploymentTemplates/MRPwithJenkinsDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/DeploymentTemplates/MRPwithJenkinsDeploy.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/Icons/Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/Icons/Hero.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/Icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/Icons/Large.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/Icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/Icons/Medium.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/Icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/Icons/Small.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/Icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/Icons/Wide.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/Manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/Manifest.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/UIDefinition.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_mrp/PartsUnlimitedMRP.MRPwithJenkins/strings/resources.resjson -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_mrp/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins.1.0.0.azpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins.1.0.0.azpkg -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/DeploymentTemplates/JenkinsDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/DeploymentTemplates/JenkinsDeploy.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/Icons/Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/Icons/Hero.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/Icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/Icons/Large.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/Icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/Icons/Medium.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/Icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/Icons/Small.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/Icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/Icons/Wide.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/Manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/Manifest.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/UIDefinition.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/jenkins_standalone/TheJenkinsProject.Jenkins/strings/resources.resjson -------------------------------------------------------------------------------- /deploy/azurestack/instances/jenkins_standalone/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimited.MRPSSH.1.0.0.azpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimited.MRPSSH.1.0.0.azpkg -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/DeploymentTemplates/PartsUnlimitedSSHMRP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/DeploymentTemplates/PartsUnlimitedSSHMRP.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/Icons/Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/Icons/Hero.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/Icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/Icons/Large.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/Icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/Icons/Medium.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/Icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/Icons/Small.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/Icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/Icons/Wide.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/Manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/Manifest.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/UIDefinition.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/PartsUnlimitedSSH.Ubuntu1604/strings/resources.resjson -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_SSH_mrp_base/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.MRP.1.0.0.azpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.MRP.1.0.0.azpkg -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/DeploymentTemplates/PartsUnlimitedMRP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/DeploymentTemplates/PartsUnlimitedMRP.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/Icons/Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/Icons/Hero.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/Icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/Icons/Large.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/Icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/Icons/Medium.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/Icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/Icons/Small.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/Icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/Icons/Wide.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/Manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/Manifest.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/UIDefinition.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_mrp_base/PartsUnlimited.Ubuntu1604/strings/resources.resjson -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_mrp_base/install_mrp_dependencies_1604.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/parts_unlimited_mrp_base/install_mrp_dependencies_1604.sh -------------------------------------------------------------------------------- /deploy/azurestack/instances/parts_unlimited_mrp_base/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /deploy/azurestack/instances/puppet_node/AddPuppetNode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/puppet_node/AddPuppetNode.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/puppet_node/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise.1.0.0.azpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise.1.0.0.azpkg -------------------------------------------------------------------------------- /deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/DeploymentTemplates/PuppetDeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/DeploymentTemplates/PuppetDeploy.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/Icons/Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/Icons/Hero.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/Icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/Icons/Large.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/Icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/Icons/Medium.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/Icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/Icons/Small.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/Icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/Icons/Wide.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/Manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/Manifest.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/UIDefinition.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/puppet_standalone/Puppet.PuppetEnterprise/strings/resources.resjson -------------------------------------------------------------------------------- /deploy/azurestack/instances/puppet_standalone/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/DeploymentTemplates/UbuntuServer1404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/DeploymentTemplates/UbuntuServer1404.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/Icons/Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/Icons/Hero.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/Icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/Icons/Large.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/Icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/Icons/Medium.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/Icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/Icons/Small.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/Icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/Icons/Wide.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/Manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/Manifest.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/UIDefinition.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.Ubuntu1404/strings/resources.resjson -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.UbuntuServer.1.0.0.azpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1404_base/Canonical.UbuntuServer.1.0.0.azpkg -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1404_base/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0.azpkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0.azpkg -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/DeploymentTemplates/UbuntuServer1604.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/DeploymentTemplates/UbuntuServer1604.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/Icons/Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/Icons/Hero.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/Icons/Large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/Icons/Large.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/Icons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/Icons/Medium.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/Icons/Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/Icons/Small.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/Icons/Wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/Icons/Wide.png -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/Manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/Manifest.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/UIDefinition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/UIDefinition.json -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/strings/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/instances/ubuntu_server_1604_base/Canonical.UbuntuServer.1.0.0/strings/resources.resjson -------------------------------------------------------------------------------- /deploy/azurestack/instances/ubuntu_server_1604_base/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /deploy/azurestack/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/azurestack/readme.md -------------------------------------------------------------------------------- /deploy/deploy_mrp_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/deploy_mrp_app.sh -------------------------------------------------------------------------------- /deploy/docker/BuildAndRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/docker/BuildAndRun.sh -------------------------------------------------------------------------------- /deploy/docker/Clients/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/docker/Clients/Dockerfile -------------------------------------------------------------------------------- /deploy/docker/Clients/drop/PUT YOUR WAR FILE HERE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/docker/Database/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/docker/Database/Dockerfile -------------------------------------------------------------------------------- /deploy/docker/Database/drop/MongoRecords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/docker/Database/drop/MongoRecords.js -------------------------------------------------------------------------------- /deploy/docker/Order/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/docker/Order/Dockerfile -------------------------------------------------------------------------------- /deploy/docker/Order/drop/PUT YOUR JAR FILE HERE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/docker/Order/drop/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/docker/Order/drop/run.sh -------------------------------------------------------------------------------- /deploy/docker/StopAndRemove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/docker/StopAndRemove.sh -------------------------------------------------------------------------------- /deploy/install_mrp_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/deploy/install_mrp_dependencies.sh -------------------------------------------------------------------------------- /src/Backend/IntegrationService/IntegrationService.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/IntegrationService.iml -------------------------------------------------------------------------------- /src/Backend/IntegrationService/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/build.gradle -------------------------------------------------------------------------------- /src/Backend/IntegrationService/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/Backend/IntegrationService/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/Backend/IntegrationService/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/gradlew -------------------------------------------------------------------------------- /src/Backend/IntegrationService/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/gradlew.bat -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/Constants.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/Main.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/infrastructure/ConfigurationHelpers.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/infrastructure/ConfigurationHelpers.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/infrastructure/ConfigurationManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/infrastructure/ConfigurationManager.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/models/QueueResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/models/QueueResponse.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/models/mrp/CatalogItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/models/mrp/CatalogItem.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/models/mrp/DeliveryAddress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/models/mrp/DeliveryAddress.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/models/mrp/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/models/mrp/Order.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/models/mrp/PhoneInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/models/mrp/PhoneInfo.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/models/mrp/Quote.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/models/mrp/Quote.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/models/mrp/QuoteItemInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/models/mrp/QuoteItemInfo.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/models/mrp/ShipmentEventInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/models/mrp/ShipmentEventInfo.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/models/mrp/ShipmentRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/models/mrp/ShipmentRecord.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/models/website/OrderItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/models/website/OrderItem.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/models/website/OrderMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/models/website/OrderMessage.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/models/website/ProductItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/models/website/ProductItem.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/models/website/ProductMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/models/website/ProductMessage.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/scheduled/CreateOrderProcessTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/scheduled/CreateOrderProcessTask.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/scheduled/UpdateProductProcessTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/scheduled/UpdateProductProcessTask.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/services/MrpConnectService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/services/MrpConnectService.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/services/QueueFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/services/QueueFactory.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/java/integration/services/QueueService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/java/integration/services/QueueService.java -------------------------------------------------------------------------------- /src/Backend/IntegrationService/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/IntegrationService/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/Backend/OrderService/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/.gitignore -------------------------------------------------------------------------------- /src/Backend/OrderService/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/README -------------------------------------------------------------------------------- /src/Backend/OrderService/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/README.md -------------------------------------------------------------------------------- /src/Backend/OrderService/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/build.gradle -------------------------------------------------------------------------------- /src/Backend/OrderService/build.war.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/build.war.gradle -------------------------------------------------------------------------------- /src/Backend/OrderService/buildSrc/buildSrc.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/buildSrc/buildSrc.iml -------------------------------------------------------------------------------- /src/Backend/OrderService/buildSrc/src/main/groovy/com/microsoft/appinsights/BuildInformationTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/buildSrc/src/main/groovy/com/microsoft/appinsights/BuildInformationTask.groovy -------------------------------------------------------------------------------- /src/Backend/OrderService/buildSrc/src/main/groovy/com/microsoft/appinsights/CleanBuildInformationTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/buildSrc/src/main/groovy/com/microsoft/appinsights/CleanBuildInformationTask.groovy -------------------------------------------------------------------------------- /src/Backend/OrderService/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/Backend/OrderService/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/Backend/OrderService/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/gradlew -------------------------------------------------------------------------------- /src/Backend/OrderService/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/gradlew.bat -------------------------------------------------------------------------------- /src/Backend/OrderService/removeBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/removeBuild.bat -------------------------------------------------------------------------------- /src/Backend/OrderService/scripts/cat001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/scripts/cat001.json -------------------------------------------------------------------------------- /src/Backend/OrderService/scripts/cat002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/scripts/cat002.json -------------------------------------------------------------------------------- /src/Backend/OrderService/scripts/cat003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/scripts/cat003.json -------------------------------------------------------------------------------- /src/Backend/OrderService/scripts/cat004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/scripts/cat004.json -------------------------------------------------------------------------------- /src/Backend/OrderService/scripts/createorder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/scripts/createorder.sh -------------------------------------------------------------------------------- /src/Backend/OrderService/scripts/dealer1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/scripts/dealer1.json -------------------------------------------------------------------------------- /src/Backend/OrderService/scripts/getenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/scripts/getenv.sh -------------------------------------------------------------------------------- /src/Backend/OrderService/scripts/quote1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/scripts/quote1.json -------------------------------------------------------------------------------- /src/Backend/OrderService/scripts/quote2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/scripts/quote2.json -------------------------------------------------------------------------------- /src/Backend/OrderService/scripts/schema.psql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/scripts/schema.psql -------------------------------------------------------------------------------- /src/Backend/OrderService/scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/scripts/setup.sh -------------------------------------------------------------------------------- /src/Backend/OrderService/scripts/setupdocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/scripts/setupdocker.sh -------------------------------------------------------------------------------- /src/Backend/OrderService/scripts/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/scripts/update.sh -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/AppInsightsFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/AppInsightsFilter.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/BadRequestException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/BadRequestException.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/ConflictingRequestException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/ConflictingRequestException.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/MongoDBProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/MongoDBProperties.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/OrderingConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/OrderingConfiguration.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/OrderingInitializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/OrderingInitializer.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/OrderingServiceProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/OrderingServiceProperties.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/PostgresqlProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/PostgresqlProperties.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/PropertyHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/PropertyHelper.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/SimpleCORSFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/SimpleCORSFilter.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/TestPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/TestPath.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/Utility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/Utility.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/controllers/CatalogController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/controllers/CatalogController.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/controllers/DealerController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/controllers/DealerController.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/controllers/OrderController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/controllers/OrderController.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/controllers/PingController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/controllers/PingController.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/controllers/QuoteController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/controllers/QuoteController.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/controllers/ShipmentController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/controllers/ShipmentController.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/models/CatalogItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/models/CatalogItem.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/models/DealerInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/models/DealerInfo.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/models/Delivery.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/models/Delivery.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/models/DeliveryAddress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/models/DeliveryAddress.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/models/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/models/Order.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/models/OrderEventInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/models/OrderEventInfo.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/models/OrderStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/models/OrderStatus.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/models/OrderUpdateInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/models/OrderUpdateInfo.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/models/PhoneInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/models/PhoneInfo.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/models/Quote.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/models/Quote.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/models/QuoteItemInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/models/QuoteItemInfo.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/models/ShipmentEventInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/models/ShipmentEventInfo.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/models/ShipmentRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/models/ShipmentRecord.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/CatalogItemsRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/CatalogItemsRepository.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/DealersRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/DealersRepository.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/OrderRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/OrderRepository.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/QuoteRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/QuoteRepository.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/RepositoryFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/RepositoryFactory.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/ShipmentRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/ShipmentRepository.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mock/MockCatalogItemsRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mock/MockCatalogItemsRepository.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mock/MockDealersRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mock/MockDealersRepository.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mock/MockOrderRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mock/MockOrderRepository.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mock/MockQuoteRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mock/MockQuoteRepository.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mock/MockShipmentRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mock/MockShipmentRepository.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/MongoCatalogItemsRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/MongoCatalogItemsRepository.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/MongoDealersRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/MongoDealersRepository.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/MongoOperationsWithRetry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/MongoOperationsWithRetry.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/MongoOrderRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/MongoOrderRepository.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/MongoQuoteRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/MongoQuoteRepository.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/MongoShipmentRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/MongoShipmentRepository.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/models/CatalogItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/models/CatalogItem.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/models/Dealer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/models/Dealer.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/models/OrderDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/models/OrderDetails.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/models/QuoteDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/models/QuoteDetails.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/models/ShipmentDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/java/smpl/ordering/repositories/mongodb/models/ShipmentDetails.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/resources/ApplicationInsights.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/resources/ApplicationInsights.xml -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/Backend/OrderService/src/main/resources/buildinfo.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/main/resources/buildinfo.properties -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/ConfigurationRule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/ConfigurationRule.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/TestOrderingConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/TestOrderingConfiguration.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/UtilityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/UtilityTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/controllers/CatalogControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/controllers/CatalogControllerTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/controllers/DealerControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/controllers/DealerControllerTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/controllers/OrderControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/controllers/OrderControllerTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/controllers/QuoteControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/controllers/QuoteControllerTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/controllers/ShipmentControllerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/controllers/ShipmentControllerTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/repositories/CatalogItemsRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/repositories/CatalogItemsRepositoryTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/repositories/DealersRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/repositories/DealersRepositoryTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/repositories/OrderRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/repositories/OrderRepositoryTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/repositories/QuoteRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/repositories/QuoteRepositoryTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/repositories/ShipmentRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/repositories/ShipmentRepositoryTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mock/test/MockCatalogItemsRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mock/test/MockCatalogItemsRepositoryTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mock/test/MockDealersRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mock/test/MockDealersRepositoryTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mock/test/MockOrderRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mock/test/MockOrderRepositoryTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mock/test/MockQuoteRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mock/test/MockQuoteRepositoryTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mock/test/MockShipmentRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mock/test/MockShipmentRepositoryTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mongodb/test/IntegrationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mongodb/test/IntegrationTests.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mongodb/test/MongoCatalogItemsRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mongodb/test/MongoCatalogItemsRepositoryTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mongodb/test/MongoDealersRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mongodb/test/MongoDealersRepositoryTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mongodb/test/MongoOrderRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mongodb/test/MongoOrderRepositoryTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mongodb/test/MongoQuoteRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mongodb/test/MongoQuoteRepositoryTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mongodb/test/MongoShipmentRepositoryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/java/smpl/ordering/repositories/mongodb/test/MongoShipmentRepositoryTest.java -------------------------------------------------------------------------------- /src/Backend/OrderService/src/test/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/src/test/resources/application.properties -------------------------------------------------------------------------------- /src/Backend/OrderService/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Backend/OrderService/version.properties -------------------------------------------------------------------------------- /src/Clients/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/README.md -------------------------------------------------------------------------------- /src/Clients/Web/controls/edittools/edittools.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/controls/edittools/edittools.css -------------------------------------------------------------------------------- /src/Clients/Web/controls/edittools/edittools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/controls/edittools/edittools.html -------------------------------------------------------------------------------- /src/Clients/Web/controls/edittools/edittools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/controls/edittools/edittools.js -------------------------------------------------------------------------------- /src/Clients/Web/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/css/default.css -------------------------------------------------------------------------------- /src/Clients/Web/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/default.html -------------------------------------------------------------------------------- /src/Clients/Web/images/CatalogIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/images/CatalogIcon.png -------------------------------------------------------------------------------- /src/Clients/Web/images/DealersIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/images/DealersIcon.png -------------------------------------------------------------------------------- /src/Clients/Web/images/DeliveryIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/images/DeliveryIcon.png -------------------------------------------------------------------------------- /src/Clients/Web/images/FabrikamIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/images/FabrikamIcon.png -------------------------------------------------------------------------------- /src/Clients/Web/images/OrderIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/images/OrderIcon.png -------------------------------------------------------------------------------- /src/Clients/Web/images/QuoteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/images/QuoteIcon.png -------------------------------------------------------------------------------- /src/Clients/Web/images/SettingsIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/images/SettingsIcon.png -------------------------------------------------------------------------------- /src/Clients/Web/images/hamburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/images/hamburger.png -------------------------------------------------------------------------------- /src/Clients/Web/images/logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/images/logo.scale-100.png -------------------------------------------------------------------------------- /src/Clients/Web/images/smalllogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/images/smalllogo.scale-100.png -------------------------------------------------------------------------------- /src/Clients/Web/images/splashscreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/images/splashscreen.scale-100.png -------------------------------------------------------------------------------- /src/Clients/Web/images/storelogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/images/storelogo.scale-100.png -------------------------------------------------------------------------------- /src/Clients/Web/images/unlimited_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/images/unlimited_logo.png -------------------------------------------------------------------------------- /src/Clients/Web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/index.html -------------------------------------------------------------------------------- /src/Clients/Web/js/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/js/data.js -------------------------------------------------------------------------------- /src/Clients/Web/js/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/js/date.js -------------------------------------------------------------------------------- /src/Clients/Web/js/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/js/default.js -------------------------------------------------------------------------------- /src/Clients/Web/js/navigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/js/navigator.js -------------------------------------------------------------------------------- /src/Clients/Web/js/serverconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/js/serverconfig.js -------------------------------------------------------------------------------- /src/Clients/Web/pages/catalog/catalog.css: -------------------------------------------------------------------------------- 1 | .catalogDetail { 2 | } 3 | -------------------------------------------------------------------------------- /src/Clients/Web/pages/catalog/catalog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/catalog/catalog.html -------------------------------------------------------------------------------- /src/Clients/Web/pages/catalog/catalog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/catalog/catalog.js -------------------------------------------------------------------------------- /src/Clients/Web/pages/dealers/dealers.css: -------------------------------------------------------------------------------- 1 | .dealerDetail { 2 | } 3 | -------------------------------------------------------------------------------- /src/Clients/Web/pages/dealers/dealers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/dealers/dealers.html -------------------------------------------------------------------------------- /src/Clients/Web/pages/dealers/dealers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/dealers/dealers.js -------------------------------------------------------------------------------- /src/Clients/Web/pages/deliveries/deliveries.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/deliveries/deliveries.css -------------------------------------------------------------------------------- /src/Clients/Web/pages/deliveries/deliveries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/deliveries/deliveries.html -------------------------------------------------------------------------------- /src/Clients/Web/pages/deliveries/deliveries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/deliveries/deliveries.js -------------------------------------------------------------------------------- /src/Clients/Web/pages/extras/extras.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/extras/extras.css -------------------------------------------------------------------------------- /src/Clients/Web/pages/extras/extras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/extras/extras.html -------------------------------------------------------------------------------- /src/Clients/Web/pages/extras/extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/extras/extras.js -------------------------------------------------------------------------------- /src/Clients/Web/pages/main/main.css: -------------------------------------------------------------------------------- 1 | .main section { 2 | margin: auto 120px; 3 | } 4 | -------------------------------------------------------------------------------- /src/Clients/Web/pages/main/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/main/main.html -------------------------------------------------------------------------------- /src/Clients/Web/pages/main/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/main/main.js -------------------------------------------------------------------------------- /src/Clients/Web/pages/main/main_files/CatalogIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/main/main_files/CatalogIcon.png -------------------------------------------------------------------------------- /src/Clients/Web/pages/main/main_files/DealersIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/main/main_files/DealersIcon.png -------------------------------------------------------------------------------- /src/Clients/Web/pages/main/main_files/DeliveryIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/main/main_files/DeliveryIcon.png -------------------------------------------------------------------------------- /src/Clients/Web/pages/main/main_files/FabrikamIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/main/main_files/FabrikamIcon.png -------------------------------------------------------------------------------- /src/Clients/Web/pages/main/main_files/OrderIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/main/main_files/OrderIcon.png -------------------------------------------------------------------------------- /src/Clients/Web/pages/main/main_files/QuoteIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/main/main_files/QuoteIcon.png -------------------------------------------------------------------------------- /src/Clients/Web/pages/main/main_files/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/main/main_files/main.js -------------------------------------------------------------------------------- /src/Clients/Web/pages/main/main_files/unlimited_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/main/main_files/unlimited_logo.png -------------------------------------------------------------------------------- /src/Clients/Web/pages/orderevents/orderevents.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Clients/Web/pages/orderevents/orderevents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/orderevents/orderevents.html -------------------------------------------------------------------------------- /src/Clients/Web/pages/orderevents/orderevents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/orderevents/orderevents.js -------------------------------------------------------------------------------- /src/Clients/Web/pages/orders/orders.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/orders/orders.css -------------------------------------------------------------------------------- /src/Clients/Web/pages/orders/orders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/orders/orders.html -------------------------------------------------------------------------------- /src/Clients/Web/pages/orders/orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/orders/orders.js -------------------------------------------------------------------------------- /src/Clients/Web/pages/quotes/quotes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/quotes/quotes.css -------------------------------------------------------------------------------- /src/Clients/Web/pages/quotes/quotes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/quotes/quotes.html -------------------------------------------------------------------------------- /src/Clients/Web/pages/quotes/quotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/pages/quotes/quotes.js -------------------------------------------------------------------------------- /src/Clients/Web/winjs/css/ui-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/winjs/css/ui-dark.css -------------------------------------------------------------------------------- /src/Clients/Web/winjs/css/ui-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/winjs/css/ui-light.css -------------------------------------------------------------------------------- /src/Clients/Web/winjs/fonts/symbols.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/winjs/fonts/symbols.ttf -------------------------------------------------------------------------------- /src/Clients/Web/winjs/js/winjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/Web/winjs/js/winjs.js -------------------------------------------------------------------------------- /src/Clients/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/build.gradle -------------------------------------------------------------------------------- /src/Clients/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/Clients/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/Clients/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/gradlew -------------------------------------------------------------------------------- /src/Clients/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PartsUnlimitedMRP/HEAD/src/Clients/gradlew.bat -------------------------------------------------------------------------------- /src/Clients/removeBuild.bat: -------------------------------------------------------------------------------- 1 | rd /S /Q build > NUL 2>&1 2 | --------------------------------------------------------------------------------