├── .gitignore ├── CODEOWNERS ├── LICENSE ├── README.md ├── SECURITY.md ├── postgresql-flexible-server ├── AAD │ └── ARM-Template │ │ ├── CreatePostgreSqlFlexibleServerWithAadAuthAndPasswordAuthEnabled.json │ │ ├── CreatePostgreSqlFlexibleServerWithAadOnlyAuthEnabled.json │ │ └── UpdateAadAuthAndPasswordAuth.json ├── ComputeAndStorageScaling │ └── ARM-Template │ │ └── ScaleServer.json ├── EncryptionWithCMK │ ├── ARM-Template │ │ ├── CreateVnetServerWithGeoBackupAndDataEncryption.json │ │ └── UpdateServerWithDataEncryptionEnabled.json │ ├── Biceps │ │ └── main.bicep │ └── Terraform │ │ ├── CreateGeoBackupEnabledServerWithGeoCMK.tf │ │ ├── dependency.tf │ │ └── provider.tf ├── GeoRestore │ └── ARM-Template │ │ ├── GeoRestoreFlexibleServerWithPublicAccess.json │ │ └── GeoRestorePostgreSqlFlexibleServerWithVnetAndPrivateDnsZone.json ├── High Availability │ └── ARM-Template │ │ └── EnableHighAvailability.json ├── IntelligentPerformance │ └── ARM-Template │ │ ├── AddDiagnosticSettingsForPostgreSqlFlexibleServer.json │ │ └── EnableQueryPerformanceTuning.json ├── ManageServer │ └── ARM-Template │ │ └── UpdateServerWithComputeStorageBackup.json ├── Migration │ ├── ARM-Template │ │ ├── CreateSingleToFlexMigration.json │ │ └── use-Runtime-Server-migrationservice.json │ └── Powershell │ │ └── SingleToFlexMigration.ps1 ├── Networking │ ├── PrivateAccess │ │ └── ARM-Template │ │ │ └── CreatePostgreSqlFlexibleServerWithVnetAndPrivateDnsZone.json │ └── PublicAccess │ │ └── ARM-Template │ │ └── CreateFlexibleServerWithPublicAccessAndFirewallRules.json ├── Replica │ └── ARM-Templates │ │ ├── CreateReplica.json │ │ └── CreateReplicaWithMaintenanceWindow.json ├── Restore │ └── ARM-Template │ │ ├── RestoreFlexibleServerWithPublicAccess.json │ │ └── RestorePostgreSqlFlexibleServerWithVnetAndPrivateDnsZone.json ├── ReviveDroppedServer │ └── ARM-Template │ │ └── ReviveDroppedServer.json ├── ScheduledMaintenance │ └── ARM-Template │ │ └── UpdateMaintenanceWindow.json ├── ServerParameters │ └── ARM-Template │ │ └── UpdateServerParameters.json └── Upgrade │ └── ARM-Template │ └── UpgradeToMajorVersion.json ├── postgresql-server └── arm-templates │ ├── ExampleWithDataEncryption │ ├── parameters.json │ └── template.json │ ├── ExampleWithDatabase │ ├── parameters.json │ └── template.json │ ├── ExampleWithDiagnosticSettings │ ├── README.md │ ├── parameter.json │ └── template.json │ ├── ExampleWithFirewallRule │ ├── parameters.json │ └── template.json │ ├── ExampleWithLocks │ ├── README.md │ ├── parameters.json │ └── template.json │ ├── ExampleWithManualPrivateLink │ ├── ExistingServerAndVnet │ │ ├── README.md │ │ ├── parameters.json │ │ ├── template.json │ │ └── vnetprivateipoverview.jpg │ └── NewServerAndVnet │ │ ├── README.md │ │ ├── linkedTemplate1.json │ │ ├── linkedTemplate2.json │ │ ├── parameters.json │ │ ├── parentTemplate.json │ │ ├── privatelink.jpg │ │ └── vnetprivateipoverview.jpg │ ├── ExampleWithMetricAlert │ ├── README.md │ ├── parameter.json │ └── template.json │ ├── ExampleWithMultipleServerProperties │ ├── README.md │ ├── parameters.json │ └── template.json │ ├── ExampleWithP2S │ ├── README.md │ ├── configure-nginx.sh │ ├── output.jpg │ ├── parameters.json │ ├── secure_connectivity.jpg │ └── template.json │ ├── ExampleWithPgBouncer │ ├── README.md │ ├── configure-pgbouncer.sh │ ├── outputs.jpg │ ├── parameters.json │ ├── pgbouncer.ini │ ├── pgbouncer.jpg │ └── template.json │ ├── ExampleWithPgpoolQueryCache │ ├── README.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ ├── configure-pgpool.sh │ ├── outputs.png │ └── pgpool.png │ ├── ExampleWithPrivateLink │ ├── ExistingServerAndVnet │ │ ├── README.md │ │ ├── parameters.json │ │ ├── template.json │ │ └── vnetprivateipoverview.jpg │ └── NewServerAndVnet │ │ ├── README.md │ │ ├── linkedTemplate1.json │ │ ├── linkedTemplate2.json │ │ ├── parameters.json │ │ ├── parentTemplate.json │ │ ├── privatelink.jpg │ │ └── vnetprivateipoverview.jpg │ ├── ExampleWithPublicNetworkAccess │ ├── README.md │ ├── parameters.json │ └── template.json │ ├── ExampleWithStartupScript │ ├── README.md │ ├── init.sh │ ├── init.sql │ ├── parameters.json │ └── template.json │ ├── NewPostgreSqlServer.json │ └── SampleParametersforNewServer.json └── samples ├── Bookstore Demo └── README.md ├── EventGrid Demo ├── EventGridListner │ ├── Controllers │ │ ├── ChatController.cs │ │ ├── EventViewController.cs │ │ ├── HomeController.cs │ │ ├── OrderRequestController.cs │ │ └── ProductsController.cs │ ├── EventGridListner.csproj │ ├── EventGridListner.csproj.user │ ├── EventGridListner.sln │ ├── Helper.cs │ ├── Hubs │ │ └── EventGridHub.cs │ ├── Models │ │ ├── AzureCloudEvent.cs │ │ ├── Customer.cs │ │ ├── CustomerRepository.cs │ │ ├── EventGrid.cs │ │ ├── ICustomerRepository.cs │ │ ├── IOrderRepository.cs │ │ ├── IProductRepository.cs │ │ ├── Order.cs │ │ ├── OrderRepository.cs │ │ ├── OrderRequest.cs │ │ ├── Product.cs │ │ └── ProductRepository.cs │ ├── Program.cs │ ├── Properties │ │ ├── PublishProfiles │ │ │ ├── EventGridListnerSampleApp - Web Deploy.pubxml │ │ │ └── EventGridListnerSampleApp - Web Deploy.pubxml.user │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Chat │ │ │ └── Chatbot.cshtml │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── OrderRequest │ │ │ └── OrderRequest.cshtml │ │ ├── Products │ │ │ └── Products.cshtml │ │ ├── Shared │ │ │ ├── ChatCorner.cshtml │ │ │ ├── _BlankLayout.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _Menu.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ ├── _ViewStart.cshtml │ │ └── web.config │ ├── bundleconfig.json │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── images │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ ├── banner3.svg │ │ ├── banner4.svg │ │ └── eventgrid.png │ │ ├── js │ │ ├── site.js │ │ └── site.min.js │ │ └── lib │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── jquery-validation-unobtrusive │ │ ├── .bower.json │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js │ │ ├── jquery-validation │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist │ │ │ ├── additional-methods.js │ │ │ ├── additional-methods.min.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ │ ├── jquery │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ └── signalr.min.js ├── EventGridPublisher │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── EventGridPublisher.csproj │ ├── EventGridPublisher.sln │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── packages.config ├── README.md └── SQL Script │ ├── Products_Triggers.sql │ └── Products_update_notify_TriggerFunction.sql ├── EventHub Demo ├── EventHubPublisher │ ├── .vs │ │ └── EventHubPublisher │ │ │ └── v15 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── EventHubPublisher.csproj │ ├── EventHubPublisher.sln │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── packages.config ├── README.md └── SQL Script │ ├── Products_Triggers.sql │ └── Products_update_notify_TriggerFunction.sql ├── Health Checks ├── Postgres_database_health_check_notebook.ipynb ├── SQL Notebooks.png └── readme.md ├── IoT Demo ├── Images │ ├── IotTelemetry.png │ ├── azurefunction.png │ └── simulateddevice.png ├── IoTReporting.pbix ├── Readme.md ├── azure function │ └── index.js └── simulated-device │ ├── SimulatedDevice.js │ └── package.json ├── cognitive-services └── complaint-sentiment-demo │ ├── README.md │ └── csentimentdemo.py ├── databases └── wide-world-importers │ ├── README.md │ ├── wide_world_importers_pg.dump │ └── workload-drivers │ └── order-insert │ ├── MultithreadedOrderInsert │ ├── App.config │ ├── ErrorFormMain.Designer.cs │ ├── ErrorFormMain.cs │ ├── ErrorFormMain.resx │ ├── MultithreadedOrderInsert.csproj │ ├── MultithreadedOrderInsertMain.Designer.cs │ ├── MultithreadedOrderInsertMain.cs │ ├── MultithreadedOrderInsertMain.resx │ ├── PostgreSqlTask.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Source.zip │ ├── SqlTasks.cs │ ├── bin │ │ └── Release.zip.rename │ └── packages.config │ ├── MultithreadedOrderInsertWorkload.sln │ ├── README.md │ ├── database │ ├── functions │ │ ├── website.calculate_customer_price.sql │ │ └── website.insert_customer_orders.sql │ └── types │ │ └── website.order_list.sql │ └── media │ └── wide-world-importers-order-insert-app.png ├── django-python ├── 0.md ├── conclusion.md ├── imgs │ └── imgs │ │ ├── cli-storage.PNG │ │ ├── cloud-shell-menu.png │ │ ├── copyicon.jpg │ │ ├── expand.png │ │ ├── manage.jpg │ │ ├── pin.png │ │ ├── register.png │ │ ├── settings.png │ │ └── shell.PNG └── intro.md ├── flexible-server └── SDK │ └── javascript │ ├── create-server.ts │ ├── delete-server.ts │ ├── get-server.ts │ ├── restart-with-failover.ts │ └── update-server.ts ├── java ├── .gitignore ├── LICENSE ├── README.md ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── microsoft │ └── azure │ └── postgresql │ └── ConnectAndQueryData.java ├── nodejs └── DayPlannerApp │ ├── .gitignore │ ├── Payloads.js │ ├── README.md │ ├── Web.Debug.config │ ├── Web.config │ ├── app.js │ ├── config.js │ ├── day-planner-app.njsproj │ ├── deploy │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ └── metadata.json │ ├── docs │ ├── ARMTemplate.md │ ├── AddingDocumentsToAzureSearchIndex.md │ ├── AppDirectoryStructure.md │ ├── AzureSearchService.md │ ├── DayPlannerApp.md │ ├── DeploymentInstructions.md │ ├── TestPostgreSQLConnection.md │ └── img │ │ ├── PostgreSQLImage-1.png │ │ ├── PostgreSQLImage-10.png │ │ ├── PostgreSQLImage-11.png │ │ ├── PostgreSQLImage-12.png │ │ ├── PostgreSQLImage-13.png │ │ ├── PostgreSQLImage-14.png │ │ ├── PostgreSQLImage-2.png │ │ ├── PostgreSQLImage-3.png │ │ ├── PostgreSQLImage-4.png │ │ ├── PostgreSQLImage-5.png │ │ ├── PostgreSQLImage-6.png │ │ ├── PostgreSQLImage-7.png │ │ ├── PostgreSQLImage-8.png │ │ ├── PostgreSQLImage-9.png │ │ ├── azure-deploy.png │ │ ├── image-1.png │ │ ├── image-10.png │ │ ├── image-11.png │ │ ├── image-12.png │ │ ├── image-13.png │ │ ├── image-14.png │ │ ├── image-15.png │ │ ├── image-16.png │ │ ├── image-17.png │ │ ├── image-18.png │ │ ├── image-19.png │ │ ├── image-2.png │ │ ├── image-20.png │ │ ├── image-21.png │ │ ├── image-22.png │ │ ├── image-23.png │ │ ├── image-24.png │ │ ├── image-25.png │ │ ├── image-26.png │ │ ├── image-27.png │ │ ├── image-28.png │ │ ├── image-29.png │ │ ├── image-3.png │ │ ├── image-30.png │ │ ├── image-31.png │ │ ├── image-32.png │ │ ├── image-33.png │ │ ├── image-34.png │ │ ├── image-35.png │ │ ├── image-36.png │ │ ├── image-37.png │ │ ├── image-4.png │ │ ├── image-40.png │ │ ├── image-41.png │ │ ├── image-42.png │ │ ├── image-43.png │ │ ├── image-44.png │ │ ├── image-45.png │ │ ├── image-46.png │ │ ├── image-47.png │ │ ├── image-48.png │ │ ├── image-49.png │ │ ├── image-5.png │ │ ├── image-50.png │ │ ├── image-51.png │ │ ├── image-52.png │ │ ├── image-53.png │ │ ├── image-6.png │ │ ├── image-7.png │ │ ├── image-8.png │ │ ├── image-9.png │ │ ├── image-login.png │ │ ├── image-logincredentials.png │ │ ├── image-registered.png │ │ ├── image-registration.png │ │ ├── search-image-25.png │ │ ├── search-image-26.png │ │ ├── search-image-27.png │ │ ├── search-image-28.png │ │ ├── search-image-29.png │ │ ├── search-image-30.png │ │ ├── search-image-31.png │ │ ├── search-image-32.png │ │ ├── search-image-33.png │ │ └── search-index-schema.png │ ├── package.json │ ├── pgHelper.js │ ├── public │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ └── Coffee_2.png │ ├── javascripts │ │ ├── bootstrap.min.js │ │ ├── datepicker.js │ │ ├── datepicker │ │ │ ├── bootstrap-datetimepicker.js │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ ├── bootstrap.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datetimepicker.ar.js │ │ │ │ ├── bootstrap-datetimepicker.az.js │ │ │ │ ├── bootstrap-datetimepicker.bg.js │ │ │ │ ├── bootstrap-datetimepicker.bn.js │ │ │ │ ├── bootstrap-datetimepicker.ca.js │ │ │ │ ├── bootstrap-datetimepicker.cs.js │ │ │ │ ├── bootstrap-datetimepicker.da.js │ │ │ │ ├── bootstrap-datetimepicker.de.js │ │ │ │ ├── bootstrap-datetimepicker.ee.js │ │ │ │ ├── bootstrap-datetimepicker.el.js │ │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ │ ├── bootstrap-datetimepicker.fi.js │ │ │ │ ├── bootstrap-datetimepicker.fr.js │ │ │ │ ├── bootstrap-datetimepicker.he.js │ │ │ │ ├── bootstrap-datetimepicker.hr.js │ │ │ │ ├── bootstrap-datetimepicker.hu.js │ │ │ │ ├── bootstrap-datetimepicker.hy.js │ │ │ │ ├── bootstrap-datetimepicker.id.js │ │ │ │ ├── bootstrap-datetimepicker.is.js │ │ │ │ ├── bootstrap-datetimepicker.it.js │ │ │ │ ├── bootstrap-datetimepicker.ja.js │ │ │ │ ├── bootstrap-datetimepicker.ka.js │ │ │ │ ├── bootstrap-datetimepicker.ko.js │ │ │ │ ├── bootstrap-datetimepicker.lt.js │ │ │ │ ├── bootstrap-datetimepicker.lv.js │ │ │ │ ├── bootstrap-datetimepicker.ms.js │ │ │ │ ├── bootstrap-datetimepicker.nb.js │ │ │ │ ├── bootstrap-datetimepicker.nl.js │ │ │ │ ├── bootstrap-datetimepicker.no.js │ │ │ │ ├── bootstrap-datetimepicker.pl.js │ │ │ │ ├── bootstrap-datetimepicker.pt-BR.js │ │ │ │ ├── bootstrap-datetimepicker.pt.js │ │ │ │ ├── bootstrap-datetimepicker.ro.js │ │ │ │ ├── bootstrap-datetimepicker.rs-latin.js │ │ │ │ ├── bootstrap-datetimepicker.rs.js │ │ │ │ ├── bootstrap-datetimepicker.ru.js │ │ │ │ ├── bootstrap-datetimepicker.sk.js │ │ │ │ ├── bootstrap-datetimepicker.sl.js │ │ │ │ ├── bootstrap-datetimepicker.sv.js │ │ │ │ ├── bootstrap-datetimepicker.sw.js │ │ │ │ ├── bootstrap-datetimepicker.th.js │ │ │ │ ├── bootstrap-datetimepicker.tr.js │ │ │ │ ├── bootstrap-datetimepicker.ua.js │ │ │ │ ├── bootstrap-datetimepicker.uk.js │ │ │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ │ │ └── bootstrap-datetimepicker.zh-TW.js │ │ ├── global.js │ │ ├── jquery.blockUI.js │ │ ├── jquery.min.js │ │ ├── login.js │ │ ├── main.js │ │ ├── moment.min.js │ │ ├── profile.js │ │ └── sweetalert.min.js │ └── stylesheets │ │ ├── azure_deploy.png │ │ ├── bootstrap.min.css │ │ ├── custom.css │ │ ├── datepicker.css │ │ ├── datepicker │ │ ├── bootstrap-datetimepicker.css │ │ └── bootstrap-datetimepicker.min.css │ │ ├── font-awesome.min.css │ │ ├── ionicons.min.css │ │ ├── login.css │ │ ├── mfb.css │ │ ├── profile.css │ │ ├── style.css │ │ ├── style.styl │ │ └── sweetalert.min.css │ ├── routes │ ├── index.js │ └── users.js │ ├── searchService.js │ ├── server.js │ ├── typings.json │ └── views │ ├── dayplanner.jade │ ├── error.jade │ ├── index.jade │ ├── layout.jade │ ├── login.jade │ └── profile.jade ├── query-store ├── a-single-if-then-this-alert │ ├── .gitignore │ ├── DeployFunction.ps1 │ ├── PollPg.sln │ ├── PollPg │ │ ├── .gitignore │ │ ├── Alert.cs │ │ ├── PollPg.csproj │ │ ├── host.json │ │ ├── local.settings.json │ │ └── zip │ │ │ └── Alert.zip │ ├── README.md │ ├── arm │ │ ├── azuredeploy.json │ │ └── azuredeploy.parameters.json │ ├── assets │ │ ├── qsmonitoring.png │ │ ├── qsmonitoring_troubleshooting_1.png │ │ ├── qsmonitoring_troubleshooting_2.png │ │ └── qsmonitoring_troubleshooting_3.png │ └── logs │ │ └── qsmonitoring20190207140106.txt └── regressed-queries │ ├── README.md │ ├── regressed-queries.ipynb │ └── requirements.txt ├── rubyonrails └── DayPlannerApp │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── Rakefile │ ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ ├── Payloads.js │ │ │ ├── application.js │ │ │ ├── bootstrap.min.js │ │ │ ├── cable.js │ │ │ ├── channels │ │ │ │ └── .keep │ │ │ ├── datepicker.js │ │ │ ├── datepicker │ │ │ │ ├── bootstrap-datetimepicker.js │ │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── locales │ │ │ │ │ ├── bootstrap-datetimepicker.ar.js │ │ │ │ │ ├── bootstrap-datetimepicker.az.js │ │ │ │ │ ├── bootstrap-datetimepicker.bg.js │ │ │ │ │ ├── bootstrap-datetimepicker.bn.js │ │ │ │ │ ├── bootstrap-datetimepicker.ca.js │ │ │ │ │ ├── bootstrap-datetimepicker.cs.js │ │ │ │ │ ├── bootstrap-datetimepicker.da.js │ │ │ │ │ ├── bootstrap-datetimepicker.de.js │ │ │ │ │ ├── bootstrap-datetimepicker.ee.js │ │ │ │ │ ├── bootstrap-datetimepicker.el.js │ │ │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ │ │ ├── bootstrap-datetimepicker.fi.js │ │ │ │ │ ├── bootstrap-datetimepicker.fr.js │ │ │ │ │ ├── bootstrap-datetimepicker.he.js │ │ │ │ │ ├── bootstrap-datetimepicker.hr.js │ │ │ │ │ ├── bootstrap-datetimepicker.hu.js │ │ │ │ │ ├── bootstrap-datetimepicker.hy.js │ │ │ │ │ ├── bootstrap-datetimepicker.id.js │ │ │ │ │ ├── bootstrap-datetimepicker.is.js │ │ │ │ │ ├── bootstrap-datetimepicker.it.js │ │ │ │ │ ├── bootstrap-datetimepicker.ja.js │ │ │ │ │ ├── bootstrap-datetimepicker.ka.js │ │ │ │ │ ├── bootstrap-datetimepicker.ko.js │ │ │ │ │ ├── bootstrap-datetimepicker.lt.js │ │ │ │ │ ├── bootstrap-datetimepicker.lv.js │ │ │ │ │ ├── bootstrap-datetimepicker.ms.js │ │ │ │ │ ├── bootstrap-datetimepicker.nb.js │ │ │ │ │ ├── bootstrap-datetimepicker.nl.js │ │ │ │ │ ├── bootstrap-datetimepicker.no.js │ │ │ │ │ ├── bootstrap-datetimepicker.pl.js │ │ │ │ │ ├── bootstrap-datetimepicker.pt-BR.js │ │ │ │ │ ├── bootstrap-datetimepicker.pt.js │ │ │ │ │ ├── bootstrap-datetimepicker.ro.js │ │ │ │ │ ├── bootstrap-datetimepicker.rs-latin.js │ │ │ │ │ ├── bootstrap-datetimepicker.rs.js │ │ │ │ │ ├── bootstrap-datetimepicker.ru.js │ │ │ │ │ ├── bootstrap-datetimepicker.sk.js │ │ │ │ │ ├── bootstrap-datetimepicker.sl.js │ │ │ │ │ ├── bootstrap-datetimepicker.sv.js │ │ │ │ │ ├── bootstrap-datetimepicker.sw.js │ │ │ │ │ ├── bootstrap-datetimepicker.th.js │ │ │ │ │ ├── bootstrap-datetimepicker.tr.js │ │ │ │ │ ├── bootstrap-datetimepicker.ua.js │ │ │ │ │ ├── bootstrap-datetimepicker.uk.js │ │ │ │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ │ │ │ └── bootstrap-datetimepicker.zh-TW.js │ │ │ ├── global.js │ │ │ ├── index_data.js │ │ │ ├── jquery.blockUI.js │ │ │ ├── jquery.min.js │ │ │ ├── main.js │ │ │ ├── moment.min.js │ │ │ ├── sweetalert.min.js │ │ │ └── waypoint.coffee │ │ └── stylesheets │ │ │ ├── application.css │ │ │ ├── bootstrap-datetimepicker.css │ │ │ ├── bootstrap-datetimepicker.min.css │ │ │ ├── custom.css │ │ │ ├── datepicker.css │ │ │ ├── mfb.css │ │ │ ├── sweetalert.min.css │ │ │ └── waypoint.scss │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ ├── concerns │ │ │ └── .keep │ │ └── waypoint_controller.rb │ ├── helpers │ │ ├── application_helper.rb │ │ └── waypoint_helper.rb │ ├── jobs │ │ └── application_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── application_record.rb │ │ └── concerns │ │ │ └── .keep │ └── views │ │ ├── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb │ │ └── waypoint │ │ └── waypoint.html.erb │ ├── bin │ ├── bundle │ ├── rails │ ├── rake │ ├── setup │ ├── update │ └── yarn │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── application_controller_renderer.rb │ │ ├── assets.rb │ │ ├── backtrace_silencers.rb │ │ ├── cookies_serializer.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ ├── mime_types.rb │ │ └── wrap_parameters.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ └── secrets.yml │ ├── db │ └── seeds.rb │ ├── deploy │ └── azuredeploy.json │ ├── docs │ ├── ARMTemplate.md │ ├── AddingDocumentsToAzureSearchIndex.md │ ├── AppDirectoryStructure.md │ ├── AzureSearchService.md │ ├── DayPlannerApp.md │ ├── DeploymentInstructions.md │ ├── TestPostgreSQLConnection.md │ └── img │ │ ├── PostgreSQLImage-1.png │ │ ├── PostgreSQLImage-10.png │ │ ├── PostgreSQLImage-2.png │ │ ├── PostgreSQLImage-3.png │ │ ├── PostgreSQLImage-4.png │ │ ├── PostgreSQLImage-5.png │ │ ├── PostgreSQLImage-6.png │ │ ├── PostgreSQLImage-7.png │ │ ├── PostgreSQLImage-8.png │ │ ├── PostgreSQLImage-9.png │ │ ├── azure-deploy.png │ │ ├── image-1.png │ │ ├── image-10.png │ │ ├── image-11.png │ │ ├── image-12.png │ │ ├── image-13.png │ │ ├── image-14.png │ │ ├── image-15.png │ │ ├── image-16.png │ │ ├── image-17.png │ │ ├── image-18.png │ │ ├── image-19.png │ │ ├── image-2.png │ │ ├── image-20.png │ │ ├── image-21.PNG │ │ ├── image-22.png │ │ ├── image-23.png │ │ ├── image-25.PNG │ │ ├── image-26.PNG │ │ ├── image-27.PNG │ │ ├── image-28.PNG │ │ ├── image-29.PNG │ │ ├── image-3.png │ │ ├── image-30.PNG │ │ ├── image-31.PNG │ │ ├── image-32.PNG │ │ ├── image-33.PNG │ │ ├── image-34.PNG │ │ ├── image-35.PNG │ │ ├── image-37.png │ │ ├── image-4.png │ │ ├── image-40.png │ │ ├── image-41.png │ │ ├── image-42.png │ │ ├── image-43.png │ │ ├── image-44.png │ │ ├── image-45.png │ │ ├── image-46.png │ │ ├── image-47.png │ │ ├── image-48.png │ │ ├── image-5.png │ │ ├── image-6.png │ │ ├── image-7.PNG │ │ ├── image-8.png │ │ ├── image-9.png │ │ ├── search-image-25.png │ │ ├── search-image-26.png │ │ ├── search-image-27.png │ │ ├── search-image-28.png │ │ ├── search-image-29.png │ │ ├── search-image-30.png │ │ ├── search-image-31.png │ │ ├── search-image-32.png │ │ ├── search-image-33.png │ │ └── search-index-schema.png │ ├── lib │ ├── assets │ │ └── .keep │ └── tasks │ │ └── .keep │ ├── log │ └── .keep │ ├── package.json │ ├── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── Coffee_2.png │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── favicon.ico │ └── robots.txt │ ├── test │ ├── application_system_test_case.rb │ ├── controllers │ │ ├── .keep │ │ └── waypoint_controller_test.rb │ ├── fixtures │ │ ├── .keep │ │ └── files │ │ │ └── .keep │ ├── helpers │ │ └── .keep │ ├── integration │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ └── .keep │ ├── system │ │ └── .keep │ └── test_helper.rb │ ├── tmp │ └── .keep │ └── vendor │ └── .keep ├── scripts ├── pgmigrate.sh └── pgreplica.sh └── wide-world-importers └── workload-drivers └── order-insert └── database └── types └── website.order_line_list.sql /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/SECURITY.md -------------------------------------------------------------------------------- /postgresql-flexible-server/AAD/ARM-Template/CreatePostgreSqlFlexibleServerWithAadOnlyAuthEnabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/AAD/ARM-Template/CreatePostgreSqlFlexibleServerWithAadOnlyAuthEnabled.json -------------------------------------------------------------------------------- /postgresql-flexible-server/AAD/ARM-Template/UpdateAadAuthAndPasswordAuth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/AAD/ARM-Template/UpdateAadAuthAndPasswordAuth.json -------------------------------------------------------------------------------- /postgresql-flexible-server/ComputeAndStorageScaling/ARM-Template/ScaleServer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/ComputeAndStorageScaling/ARM-Template/ScaleServer.json -------------------------------------------------------------------------------- /postgresql-flexible-server/EncryptionWithCMK/ARM-Template/CreateVnetServerWithGeoBackupAndDataEncryption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/EncryptionWithCMK/ARM-Template/CreateVnetServerWithGeoBackupAndDataEncryption.json -------------------------------------------------------------------------------- /postgresql-flexible-server/EncryptionWithCMK/ARM-Template/UpdateServerWithDataEncryptionEnabled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/EncryptionWithCMK/ARM-Template/UpdateServerWithDataEncryptionEnabled.json -------------------------------------------------------------------------------- /postgresql-flexible-server/EncryptionWithCMK/Biceps/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/EncryptionWithCMK/Biceps/main.bicep -------------------------------------------------------------------------------- /postgresql-flexible-server/EncryptionWithCMK/Terraform/CreateGeoBackupEnabledServerWithGeoCMK.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/EncryptionWithCMK/Terraform/CreateGeoBackupEnabledServerWithGeoCMK.tf -------------------------------------------------------------------------------- /postgresql-flexible-server/EncryptionWithCMK/Terraform/dependency.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/EncryptionWithCMK/Terraform/dependency.tf -------------------------------------------------------------------------------- /postgresql-flexible-server/EncryptionWithCMK/Terraform/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/EncryptionWithCMK/Terraform/provider.tf -------------------------------------------------------------------------------- /postgresql-flexible-server/GeoRestore/ARM-Template/GeoRestoreFlexibleServerWithPublicAccess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/GeoRestore/ARM-Template/GeoRestoreFlexibleServerWithPublicAccess.json -------------------------------------------------------------------------------- /postgresql-flexible-server/High Availability/ARM-Template/EnableHighAvailability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/High Availability/ARM-Template/EnableHighAvailability.json -------------------------------------------------------------------------------- /postgresql-flexible-server/IntelligentPerformance/ARM-Template/EnableQueryPerformanceTuning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/IntelligentPerformance/ARM-Template/EnableQueryPerformanceTuning.json -------------------------------------------------------------------------------- /postgresql-flexible-server/ManageServer/ARM-Template/UpdateServerWithComputeStorageBackup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/ManageServer/ARM-Template/UpdateServerWithComputeStorageBackup.json -------------------------------------------------------------------------------- /postgresql-flexible-server/Migration/ARM-Template/CreateSingleToFlexMigration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/Migration/ARM-Template/CreateSingleToFlexMigration.json -------------------------------------------------------------------------------- /postgresql-flexible-server/Migration/ARM-Template/use-Runtime-Server-migrationservice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/Migration/ARM-Template/use-Runtime-Server-migrationservice.json -------------------------------------------------------------------------------- /postgresql-flexible-server/Migration/Powershell/SingleToFlexMigration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/Migration/Powershell/SingleToFlexMigration.ps1 -------------------------------------------------------------------------------- /postgresql-flexible-server/Replica/ARM-Templates/CreateReplica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/Replica/ARM-Templates/CreateReplica.json -------------------------------------------------------------------------------- /postgresql-flexible-server/Replica/ARM-Templates/CreateReplicaWithMaintenanceWindow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/Replica/ARM-Templates/CreateReplicaWithMaintenanceWindow.json -------------------------------------------------------------------------------- /postgresql-flexible-server/Restore/ARM-Template/RestoreFlexibleServerWithPublicAccess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/Restore/ARM-Template/RestoreFlexibleServerWithPublicAccess.json -------------------------------------------------------------------------------- /postgresql-flexible-server/Restore/ARM-Template/RestorePostgreSqlFlexibleServerWithVnetAndPrivateDnsZone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/Restore/ARM-Template/RestorePostgreSqlFlexibleServerWithVnetAndPrivateDnsZone.json -------------------------------------------------------------------------------- /postgresql-flexible-server/ReviveDroppedServer/ARM-Template/ReviveDroppedServer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/ReviveDroppedServer/ARM-Template/ReviveDroppedServer.json -------------------------------------------------------------------------------- /postgresql-flexible-server/ScheduledMaintenance/ARM-Template/UpdateMaintenanceWindow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/ScheduledMaintenance/ARM-Template/UpdateMaintenanceWindow.json -------------------------------------------------------------------------------- /postgresql-flexible-server/ServerParameters/ARM-Template/UpdateServerParameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/ServerParameters/ARM-Template/UpdateServerParameters.json -------------------------------------------------------------------------------- /postgresql-flexible-server/Upgrade/ARM-Template/UpgradeToMajorVersion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-flexible-server/Upgrade/ARM-Template/UpgradeToMajorVersion.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithDataEncryption/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithDataEncryption/parameters.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithDataEncryption/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithDataEncryption/template.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithDatabase/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithDatabase/parameters.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithDatabase/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithDatabase/template.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithDiagnosticSettings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithDiagnosticSettings/README.md -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithDiagnosticSettings/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithDiagnosticSettings/parameter.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithDiagnosticSettings/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithDiagnosticSettings/template.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithFirewallRule/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithFirewallRule/parameters.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithFirewallRule/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithFirewallRule/template.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithLocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithLocks/README.md -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithLocks/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithLocks/parameters.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithLocks/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithLocks/template.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithManualPrivateLink/ExistingServerAndVnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithManualPrivateLink/ExistingServerAndVnet/README.md -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithManualPrivateLink/ExistingServerAndVnet/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithManualPrivateLink/ExistingServerAndVnet/parameters.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithManualPrivateLink/ExistingServerAndVnet/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithManualPrivateLink/ExistingServerAndVnet/template.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithManualPrivateLink/ExistingServerAndVnet/vnetprivateipoverview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithManualPrivateLink/ExistingServerAndVnet/vnetprivateipoverview.jpg -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithManualPrivateLink/NewServerAndVnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithManualPrivateLink/NewServerAndVnet/README.md -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithManualPrivateLink/NewServerAndVnet/linkedTemplate1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithManualPrivateLink/NewServerAndVnet/linkedTemplate1.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithManualPrivateLink/NewServerAndVnet/linkedTemplate2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithManualPrivateLink/NewServerAndVnet/linkedTemplate2.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithManualPrivateLink/NewServerAndVnet/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithManualPrivateLink/NewServerAndVnet/parameters.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithManualPrivateLink/NewServerAndVnet/parentTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithManualPrivateLink/NewServerAndVnet/parentTemplate.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithManualPrivateLink/NewServerAndVnet/privatelink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithManualPrivateLink/NewServerAndVnet/privatelink.jpg -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithManualPrivateLink/NewServerAndVnet/vnetprivateipoverview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithManualPrivateLink/NewServerAndVnet/vnetprivateipoverview.jpg -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithMetricAlert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithMetricAlert/README.md -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithMetricAlert/parameter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithMetricAlert/parameter.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithMetricAlert/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithMetricAlert/template.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithMultipleServerProperties/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithMultipleServerProperties/README.md -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithMultipleServerProperties/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithMultipleServerProperties/parameters.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithMultipleServerProperties/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithMultipleServerProperties/template.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithP2S/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithP2S/README.md -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithP2S/configure-nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithP2S/configure-nginx.sh -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithP2S/output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithP2S/output.jpg -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithP2S/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithP2S/parameters.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithP2S/secure_connectivity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithP2S/secure_connectivity.jpg -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithP2S/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithP2S/template.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPgBouncer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPgBouncer/README.md -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPgBouncer/configure-pgbouncer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPgBouncer/configure-pgbouncer.sh -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPgBouncer/outputs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPgBouncer/outputs.jpg -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPgBouncer/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPgBouncer/parameters.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPgBouncer/pgbouncer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPgBouncer/pgbouncer.ini -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPgBouncer/pgbouncer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPgBouncer/pgbouncer.jpg -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPgBouncer/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPgBouncer/template.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPgpoolQueryCache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPgpoolQueryCache/README.md -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPgpoolQueryCache/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPgpoolQueryCache/azuredeploy.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPgpoolQueryCache/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPgpoolQueryCache/azuredeploy.parameters.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPgpoolQueryCache/configure-pgpool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPgpoolQueryCache/configure-pgpool.sh -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPgpoolQueryCache/outputs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPgpoolQueryCache/outputs.png -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPgpoolQueryCache/pgpool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPgpoolQueryCache/pgpool.png -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPrivateLink/ExistingServerAndVnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPrivateLink/ExistingServerAndVnet/README.md -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPrivateLink/ExistingServerAndVnet/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPrivateLink/ExistingServerAndVnet/parameters.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPrivateLink/ExistingServerAndVnet/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPrivateLink/ExistingServerAndVnet/template.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPrivateLink/ExistingServerAndVnet/vnetprivateipoverview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPrivateLink/ExistingServerAndVnet/vnetprivateipoverview.jpg -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPrivateLink/NewServerAndVnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPrivateLink/NewServerAndVnet/README.md -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPrivateLink/NewServerAndVnet/linkedTemplate1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPrivateLink/NewServerAndVnet/linkedTemplate1.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPrivateLink/NewServerAndVnet/linkedTemplate2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPrivateLink/NewServerAndVnet/linkedTemplate2.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPrivateLink/NewServerAndVnet/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPrivateLink/NewServerAndVnet/parameters.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPrivateLink/NewServerAndVnet/parentTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPrivateLink/NewServerAndVnet/parentTemplate.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPrivateLink/NewServerAndVnet/privatelink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPrivateLink/NewServerAndVnet/privatelink.jpg -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPrivateLink/NewServerAndVnet/vnetprivateipoverview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPrivateLink/NewServerAndVnet/vnetprivateipoverview.jpg -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPublicNetworkAccess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPublicNetworkAccess/README.md -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPublicNetworkAccess/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPublicNetworkAccess/parameters.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithPublicNetworkAccess/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithPublicNetworkAccess/template.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithStartupScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithStartupScript/README.md -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithStartupScript/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithStartupScript/init.sh -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithStartupScript/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithStartupScript/init.sql -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithStartupScript/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithStartupScript/parameters.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/ExampleWithStartupScript/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/ExampleWithStartupScript/template.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/NewPostgreSqlServer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/NewPostgreSqlServer.json -------------------------------------------------------------------------------- /postgresql-server/arm-templates/SampleParametersforNewServer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/postgresql-server/arm-templates/SampleParametersforNewServer.json -------------------------------------------------------------------------------- /samples/Bookstore Demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/Bookstore Demo/README.md -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Controllers/ChatController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Controllers/ChatController.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Controllers/EventViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Controllers/EventViewController.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Controllers/HomeController.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Controllers/OrderRequestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Controllers/OrderRequestController.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/EventGridListner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/EventGridListner.csproj -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/EventGridListner.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/EventGridListner.csproj.user -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/EventGridListner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/EventGridListner.sln -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Helper.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Hubs/EventGridHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Hubs/EventGridHub.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Models/AzureCloudEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Models/AzureCloudEvent.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Models/Customer.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Models/CustomerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Models/CustomerRepository.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Models/EventGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Models/EventGrid.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Models/ICustomerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Models/ICustomerRepository.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Models/IOrderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Models/IOrderRepository.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Models/IProductRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Models/IProductRepository.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Models/Order.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Models/OrderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Models/OrderRepository.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Models/OrderRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Models/OrderRequest.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Models/Product.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Models/ProductRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Models/ProductRepository.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Program.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Startup.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Views/Chat/Chatbot.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Views/Chat/Chatbot.cshtml -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Views/OrderRequest/OrderRequest.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Views/OrderRequest/OrderRequest.cshtml -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Views/Products/Products.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Views/Products/Products.cshtml -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Views/Shared/ChatCorner.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Views/Shared/ChatCorner.cshtml -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Views/Shared/_BlankLayout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Views/Shared/_BlankLayout.cshtml -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Views/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Views/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Views/Shared/_Menu.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Views/Shared/_Menu.cshtml -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/Views/web.config -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/bundleconfig.json -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/css/site.css -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/images/eventgrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/images/eventgrid.png -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridListner/wwwroot/lib/signalr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridListner/wwwroot/lib/signalr.min.js -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridPublisher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridPublisher/App.config -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridPublisher/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridPublisher/App.xaml -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridPublisher/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridPublisher/App.xaml.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridPublisher/EventGridPublisher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridPublisher/EventGridPublisher.csproj -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridPublisher/EventGridPublisher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridPublisher/EventGridPublisher.sln -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridPublisher/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridPublisher/MainWindow.xaml -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridPublisher/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridPublisher/MainWindow.xaml.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridPublisher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridPublisher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridPublisher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridPublisher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridPublisher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridPublisher/Properties/Resources.resx -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridPublisher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridPublisher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridPublisher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridPublisher/Properties/Settings.settings -------------------------------------------------------------------------------- /samples/EventGrid Demo/EventGridPublisher/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/EventGridPublisher/packages.config -------------------------------------------------------------------------------- /samples/EventGrid Demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/README.md -------------------------------------------------------------------------------- /samples/EventGrid Demo/SQL Script/Products_Triggers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/SQL Script/Products_Triggers.sql -------------------------------------------------------------------------------- /samples/EventGrid Demo/SQL Script/Products_update_notify_TriggerFunction.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventGrid Demo/SQL Script/Products_update_notify_TriggerFunction.sql -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/.vs/EventHubPublisher/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/EventHubPublisher/.vs/EventHubPublisher/v15/.suo -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/.vs/EventHubPublisher/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/.vs/EventHubPublisher/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/EventHubPublisher/.vs/EventHubPublisher/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/.vs/EventHubPublisher/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/EventHubPublisher/.vs/EventHubPublisher/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/.vs/EventHubPublisher/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/EventHubPublisher/.vs/EventHubPublisher/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/EventHubPublisher/App.config -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/EventHubPublisher/App.xaml -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/EventHubPublisher/App.xaml.cs -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/EventHubPublisher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/EventHubPublisher/EventHubPublisher.csproj -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/EventHubPublisher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/EventHubPublisher/EventHubPublisher.sln -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/EventHubPublisher/MainWindow.xaml -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/EventHubPublisher/MainWindow.xaml.cs -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/EventHubPublisher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/EventHubPublisher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/EventHubPublisher/Properties/Resources.resx -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/EventHubPublisher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/EventHubPublisher/Properties/Settings.settings -------------------------------------------------------------------------------- /samples/EventHub Demo/EventHubPublisher/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/EventHubPublisher/packages.config -------------------------------------------------------------------------------- /samples/EventHub Demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/README.md -------------------------------------------------------------------------------- /samples/EventHub Demo/SQL Script/Products_Triggers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/SQL Script/Products_Triggers.sql -------------------------------------------------------------------------------- /samples/EventHub Demo/SQL Script/Products_update_notify_TriggerFunction.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/EventHub Demo/SQL Script/Products_update_notify_TriggerFunction.sql -------------------------------------------------------------------------------- /samples/Health Checks/Postgres_database_health_check_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/Health Checks/Postgres_database_health_check_notebook.ipynb -------------------------------------------------------------------------------- /samples/Health Checks/SQL Notebooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/Health Checks/SQL Notebooks.png -------------------------------------------------------------------------------- /samples/Health Checks/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/Health Checks/readme.md -------------------------------------------------------------------------------- /samples/IoT Demo/Images/IotTelemetry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/IoT Demo/Images/IotTelemetry.png -------------------------------------------------------------------------------- /samples/IoT Demo/Images/azurefunction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/IoT Demo/Images/azurefunction.png -------------------------------------------------------------------------------- /samples/IoT Demo/Images/simulateddevice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/IoT Demo/Images/simulateddevice.png -------------------------------------------------------------------------------- /samples/IoT Demo/IoTReporting.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/IoT Demo/IoTReporting.pbix -------------------------------------------------------------------------------- /samples/IoT Demo/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/IoT Demo/Readme.md -------------------------------------------------------------------------------- /samples/IoT Demo/azure function/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/IoT Demo/azure function/index.js -------------------------------------------------------------------------------- /samples/IoT Demo/simulated-device/SimulatedDevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/IoT Demo/simulated-device/SimulatedDevice.js -------------------------------------------------------------------------------- /samples/IoT Demo/simulated-device/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/IoT Demo/simulated-device/package.json -------------------------------------------------------------------------------- /samples/cognitive-services/complaint-sentiment-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/cognitive-services/complaint-sentiment-demo/README.md -------------------------------------------------------------------------------- /samples/cognitive-services/complaint-sentiment-demo/csentimentdemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/cognitive-services/complaint-sentiment-demo/csentimentdemo.py -------------------------------------------------------------------------------- /samples/databases/wide-world-importers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/databases/wide-world-importers/README.md -------------------------------------------------------------------------------- /samples/databases/wide-world-importers/wide_world_importers_pg.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/databases/wide-world-importers/wide_world_importers_pg.dump -------------------------------------------------------------------------------- /samples/databases/wide-world-importers/workload-drivers/order-insert/MultithreadedOrderInsert/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/databases/wide-world-importers/workload-drivers/order-insert/MultithreadedOrderInsert/App.config -------------------------------------------------------------------------------- /samples/databases/wide-world-importers/workload-drivers/order-insert/MultithreadedOrderInsert/ErrorFormMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/databases/wide-world-importers/workload-drivers/order-insert/MultithreadedOrderInsert/ErrorFormMain.cs -------------------------------------------------------------------------------- /samples/databases/wide-world-importers/workload-drivers/order-insert/MultithreadedOrderInsert/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/databases/wide-world-importers/workload-drivers/order-insert/MultithreadedOrderInsert/Program.cs -------------------------------------------------------------------------------- /samples/databases/wide-world-importers/workload-drivers/order-insert/MultithreadedOrderInsert/Source.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/databases/wide-world-importers/workload-drivers/order-insert/MultithreadedOrderInsert/Source.zip -------------------------------------------------------------------------------- /samples/databases/wide-world-importers/workload-drivers/order-insert/MultithreadedOrderInsert/SqlTasks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/databases/wide-world-importers/workload-drivers/order-insert/MultithreadedOrderInsert/SqlTasks.cs -------------------------------------------------------------------------------- /samples/databases/wide-world-importers/workload-drivers/order-insert/MultithreadedOrderInsertWorkload.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/databases/wide-world-importers/workload-drivers/order-insert/MultithreadedOrderInsertWorkload.sln -------------------------------------------------------------------------------- /samples/databases/wide-world-importers/workload-drivers/order-insert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/databases/wide-world-importers/workload-drivers/order-insert/README.md -------------------------------------------------------------------------------- /samples/databases/wide-world-importers/workload-drivers/order-insert/database/types/website.order_list.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/databases/wide-world-importers/workload-drivers/order-insert/database/types/website.order_list.sql -------------------------------------------------------------------------------- /samples/django-python/0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/django-python/0.md -------------------------------------------------------------------------------- /samples/django-python/conclusion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/django-python/conclusion.md -------------------------------------------------------------------------------- /samples/django-python/imgs/imgs/cli-storage.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/django-python/imgs/imgs/cli-storage.PNG -------------------------------------------------------------------------------- /samples/django-python/imgs/imgs/cloud-shell-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/django-python/imgs/imgs/cloud-shell-menu.png -------------------------------------------------------------------------------- /samples/django-python/imgs/imgs/copyicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/django-python/imgs/imgs/copyicon.jpg -------------------------------------------------------------------------------- /samples/django-python/imgs/imgs/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/django-python/imgs/imgs/expand.png -------------------------------------------------------------------------------- /samples/django-python/imgs/imgs/manage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/django-python/imgs/imgs/manage.jpg -------------------------------------------------------------------------------- /samples/django-python/imgs/imgs/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/django-python/imgs/imgs/pin.png -------------------------------------------------------------------------------- /samples/django-python/imgs/imgs/register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/django-python/imgs/imgs/register.png -------------------------------------------------------------------------------- /samples/django-python/imgs/imgs/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/django-python/imgs/imgs/settings.png -------------------------------------------------------------------------------- /samples/django-python/imgs/imgs/shell.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/django-python/imgs/imgs/shell.PNG -------------------------------------------------------------------------------- /samples/django-python/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/django-python/intro.md -------------------------------------------------------------------------------- /samples/flexible-server/SDK/javascript/create-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/flexible-server/SDK/javascript/create-server.ts -------------------------------------------------------------------------------- /samples/flexible-server/SDK/javascript/delete-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/flexible-server/SDK/javascript/delete-server.ts -------------------------------------------------------------------------------- /samples/flexible-server/SDK/javascript/get-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/flexible-server/SDK/javascript/get-server.ts -------------------------------------------------------------------------------- /samples/flexible-server/SDK/javascript/restart-with-failover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/flexible-server/SDK/javascript/restart-with-failover.ts -------------------------------------------------------------------------------- /samples/flexible-server/SDK/javascript/update-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/flexible-server/SDK/javascript/update-server.ts -------------------------------------------------------------------------------- /samples/java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/java/.gitignore -------------------------------------------------------------------------------- /samples/java/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/java/LICENSE -------------------------------------------------------------------------------- /samples/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/java/README.md -------------------------------------------------------------------------------- /samples/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/java/pom.xml -------------------------------------------------------------------------------- /samples/java/src/main/java/com/microsoft/azure/postgresql/ConnectAndQueryData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/java/src/main/java/com/microsoft/azure/postgresql/ConnectAndQueryData.java -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/.gitignore -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/Payloads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/Payloads.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/README.md -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/Web.Debug.config -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/Web.config -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/app.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/config.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/day-planner-app.njsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/day-planner-app.njsproj -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/deploy/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/deploy/azuredeploy.json -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/deploy/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/deploy/azuredeploy.parameters.json -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/deploy/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/deploy/metadata.json -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/ARMTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/ARMTemplate.md -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/AddingDocumentsToAzureSearchIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/AddingDocumentsToAzureSearchIndex.md -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/AppDirectoryStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/AppDirectoryStructure.md -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/AzureSearchService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/AzureSearchService.md -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/DayPlannerApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/DayPlannerApp.md -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/DeploymentInstructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/DeploymentInstructions.md -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/TestPostgreSQLConnection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/TestPostgreSQLConnection.md -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-1.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-10.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-11.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-12.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-13.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-14.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-2.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-3.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-4.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-5.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-6.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-7.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-8.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/PostgreSQLImage-9.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/azure-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/azure-deploy.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-1.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-10.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-11.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-12.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-13.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-14.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-15.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-16.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-17.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-18.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-19.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-2.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-20.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-21.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-22.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-23.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-24.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-25.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-26.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-27.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-28.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-29.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-3.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-30.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-31.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-32.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-33.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-34.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-35.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-36.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-37.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-4.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-40.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-41.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-42.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-43.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-44.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-45.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-46.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-47.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-48.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-49.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-5.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-50.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-51.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-52.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-53.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-6.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-7.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-8.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-9.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-login.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-logincredentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-logincredentials.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-registered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-registered.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/image-registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/image-registration.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/search-image-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/search-image-25.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/search-image-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/search-image-26.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/search-image-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/search-image-27.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/search-image-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/search-image-28.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/search-image-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/search-image-29.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/search-image-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/search-image-30.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/search-image-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/search-image-31.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/search-image-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/search-image-32.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/search-image-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/search-image-33.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/docs/img/search-index-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/docs/img/search-index-schema.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/package.json -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/pgHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/pgHelper.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/images/Coffee_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/images/Coffee_2.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/bootstrap.min.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/bootstrap-datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/bootstrap-datetimepicker.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/bootstrap-datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/bootstrap-datetimepicker.min.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/bootstrap.min.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ar.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.az.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.bg.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.bn.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ca.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.cs.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.da.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.de.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ee.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.el.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.es.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.fi.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.fr.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.he.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.hr.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.hu.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.hy.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.id.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.is.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.it.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ja.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ka.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ko.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.lt.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.lv.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ms.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.nb.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.nl.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.no.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.pl.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.pt-BR.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.pt.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ro.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.rs-latin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.rs-latin.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.rs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.rs.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ru.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.sk.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.sl.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.sv.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.sw.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.th.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.tr.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.ua.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.uk.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.zh-CN.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/datepicker/locales/bootstrap-datetimepicker.zh-TW.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/global.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/jquery.blockUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/jquery.blockUI.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/jquery.min.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/login.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/main.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/moment.min.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/profile.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/javascripts/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/javascripts/sweetalert.min.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/stylesheets/azure_deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/stylesheets/azure_deploy.png -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/stylesheets/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/stylesheets/bootstrap.min.css -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/stylesheets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/stylesheets/custom.css -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/stylesheets/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/stylesheets/datepicker.css -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/stylesheets/datepicker/bootstrap-datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/stylesheets/datepicker/bootstrap-datetimepicker.css -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/stylesheets/datepicker/bootstrap-datetimepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/stylesheets/datepicker/bootstrap-datetimepicker.min.css -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/stylesheets/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/stylesheets/font-awesome.min.css -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/stylesheets/ionicons.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/stylesheets/ionicons.min.css -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/stylesheets/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/stylesheets/login.css -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/stylesheets/mfb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/stylesheets/mfb.css -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/stylesheets/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/stylesheets/profile.css -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/stylesheets/style.css -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/stylesheets/style.styl: -------------------------------------------------------------------------------- 1 | body 2 | padding: 50px 3 | font: 14px "Lucida Grande", Helvetica, Arial, sans-serif 4 | a 5 | color: #00B7FF -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/public/stylesheets/sweetalert.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/public/stylesheets/sweetalert.min.css -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/routes/index.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/routes/users.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/searchService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/searchService.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/server.js -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/typings.json -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/views/dayplanner.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/views/dayplanner.jade -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/views/error.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/views/error.jade -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/views/index.jade -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/views/layout.jade -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/views/login.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/views/login.jade -------------------------------------------------------------------------------- /samples/nodejs/DayPlannerApp/views/profile.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/nodejs/DayPlannerApp/views/profile.jade -------------------------------------------------------------------------------- /samples/query-store/a-single-if-then-this-alert/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/a-single-if-then-this-alert/.gitignore -------------------------------------------------------------------------------- /samples/query-store/a-single-if-then-this-alert/DeployFunction.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/a-single-if-then-this-alert/DeployFunction.ps1 -------------------------------------------------------------------------------- /samples/query-store/a-single-if-then-this-alert/PollPg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/a-single-if-then-this-alert/PollPg.sln -------------------------------------------------------------------------------- /samples/query-store/a-single-if-then-this-alert/PollPg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/a-single-if-then-this-alert/PollPg/.gitignore -------------------------------------------------------------------------------- /samples/query-store/a-single-if-then-this-alert/PollPg/Alert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/a-single-if-then-this-alert/PollPg/Alert.cs -------------------------------------------------------------------------------- /samples/query-store/a-single-if-then-this-alert/PollPg/PollPg.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/a-single-if-then-this-alert/PollPg/PollPg.csproj -------------------------------------------------------------------------------- /samples/query-store/a-single-if-then-this-alert/PollPg/host.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /samples/query-store/a-single-if-then-this-alert/PollPg/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/a-single-if-then-this-alert/PollPg/local.settings.json -------------------------------------------------------------------------------- /samples/query-store/a-single-if-then-this-alert/PollPg/zip/Alert.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/a-single-if-then-this-alert/PollPg/zip/Alert.zip -------------------------------------------------------------------------------- /samples/query-store/a-single-if-then-this-alert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/a-single-if-then-this-alert/README.md -------------------------------------------------------------------------------- /samples/query-store/a-single-if-then-this-alert/arm/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/a-single-if-then-this-alert/arm/azuredeploy.json -------------------------------------------------------------------------------- /samples/query-store/a-single-if-then-this-alert/arm/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/a-single-if-then-this-alert/arm/azuredeploy.parameters.json -------------------------------------------------------------------------------- /samples/query-store/a-single-if-then-this-alert/assets/qsmonitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/a-single-if-then-this-alert/assets/qsmonitoring.png -------------------------------------------------------------------------------- /samples/query-store/a-single-if-then-this-alert/assets/qsmonitoring_troubleshooting_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/a-single-if-then-this-alert/assets/qsmonitoring_troubleshooting_1.png -------------------------------------------------------------------------------- /samples/query-store/a-single-if-then-this-alert/assets/qsmonitoring_troubleshooting_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/a-single-if-then-this-alert/assets/qsmonitoring_troubleshooting_2.png -------------------------------------------------------------------------------- /samples/query-store/a-single-if-then-this-alert/assets/qsmonitoring_troubleshooting_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/a-single-if-then-this-alert/assets/qsmonitoring_troubleshooting_3.png -------------------------------------------------------------------------------- /samples/query-store/a-single-if-then-this-alert/logs/qsmonitoring20190207140106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/a-single-if-then-this-alert/logs/qsmonitoring20190207140106.txt -------------------------------------------------------------------------------- /samples/query-store/regressed-queries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/regressed-queries/README.md -------------------------------------------------------------------------------- /samples/query-store/regressed-queries/regressed-queries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/query-store/regressed-queries/regressed-queries.ipynb -------------------------------------------------------------------------------- /samples/query-store/regressed-queries/requirements.txt: -------------------------------------------------------------------------------- 1 | psycopg2 2 | pandas 3 | numpy 4 | scipy 5 | matplotlib -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/Gemfile -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/Gemfile.lock -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/README.md -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/Rakefile -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/config/manifest.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/Payloads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/Payloads.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/bootstrap.min.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/bootstrap-datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/bootstrap-datetimepicker.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/bootstrap-datetimepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/bootstrap-datetimepicker.min.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/bootstrap.min.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ar.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.az.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.bg.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.bn.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ca.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.cs.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.da.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.de.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ee.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.el.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.es.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.fi.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.fr.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.he.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.hr.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.hu.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.hy.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.id.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.is.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.it.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ja.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ka.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ko.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.lt.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.lv.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ms.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.nb.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.nl.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.no.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.pl.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.pt.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ro.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.rs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.rs.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ru.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.sk.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.sl.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.sv.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.sw.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.th.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.tr.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.ua.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/datepicker/locales/bootstrap-datetimepicker.uk.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/global.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/index_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/index_data.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/jquery.blockUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/jquery.blockUI.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/jquery.min.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/main.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/moment.min.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/sweetalert.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/sweetalert.min.js -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/javascripts/waypoint.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/javascripts/waypoint.coffee -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/stylesheets/bootstrap-datetimepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/stylesheets/bootstrap-datetimepicker.css -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/stylesheets/bootstrap-datetimepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/stylesheets/bootstrap-datetimepicker.min.css -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/stylesheets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/stylesheets/custom.css -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/stylesheets/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/stylesheets/datepicker.css -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/stylesheets/mfb.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/stylesheets/mfb.css -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/stylesheets/sweetalert.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/stylesheets/sweetalert.min.css -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/assets/stylesheets/waypoint.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/assets/stylesheets/waypoint.scss -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/controllers/waypoint_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/controllers/waypoint_controller.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/helpers/waypoint_helper.rb: -------------------------------------------------------------------------------- 1 | module WaypointHelper 2 | end 3 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/models/application_record.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/app/views/waypoint/waypoint.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/app/views/waypoint/waypoint.html.erb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/bin/bundle -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/bin/rails -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/bin/rake -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/bin/setup -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/bin/update -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/bin/yarn -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config.ru -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/application.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/boot.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/cable.yml -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/database.yml -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/environment.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/environments/development.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/environments/production.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/environments/test.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/initializers/assets.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/initializers/inflections.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/locales/en.yml -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/puma.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/routes.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/config/secrets.yml -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/db/seeds.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/deploy/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/deploy/azuredeploy.json -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/ARMTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/ARMTemplate.md -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/AddingDocumentsToAzureSearchIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/AddingDocumentsToAzureSearchIndex.md -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/AppDirectoryStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/AppDirectoryStructure.md -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/AzureSearchService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/AzureSearchService.md -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/DayPlannerApp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/DayPlannerApp.md -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/DeploymentInstructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/DeploymentInstructions.md -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/TestPostgreSQLConnection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/TestPostgreSQLConnection.md -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-1.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-10.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-2.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-3.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-4.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-5.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-6.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-7.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-8.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/PostgreSQLImage-9.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/azure-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/azure-deploy.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-1.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-10.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-11.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-12.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-13.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-14.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-15.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-16.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-17.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-18.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-19.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-2.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-20.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-21.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-21.PNG -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-22.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-23.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-25.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-25.PNG -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-26.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-26.PNG -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-27.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-27.PNG -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-28.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-28.PNG -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-29.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-29.PNG -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-3.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-30.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-30.PNG -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-31.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-31.PNG -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-32.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-32.PNG -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-33.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-33.PNG -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-34.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-34.PNG -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-35.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-35.PNG -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-37.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-4.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-40.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-41.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-42.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-43.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-44.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-45.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-46.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-47.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-48.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-5.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-6.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-7.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-7.PNG -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-8.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/image-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/image-9.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/search-image-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/search-image-25.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/search-image-26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/search-image-26.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/search-image-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/search-image-27.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/search-image-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/search-image-28.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/search-image-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/search-image-29.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/search-image-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/search-image-30.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/search-image-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/search-image-31.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/search-image-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/search-image-32.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/search-image-33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/search-image-33.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/docs/img/search-index-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/docs/img/search-index-schema.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/package.json -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/public/404.html -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/public/422.html -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/public/500.html -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/public/Coffee_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/public/Coffee_2.png -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/public/robots.txt -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/test/application_system_test_case.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/test/controllers/waypoint_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/test/controllers/waypoint_controller_test.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/rubyonrails/DayPlannerApp/test/test_helper.rb -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/rubyonrails/DayPlannerApp/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/scripts/pgmigrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/scripts/pgmigrate.sh -------------------------------------------------------------------------------- /samples/scripts/pgreplica.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/scripts/pgreplica.sh -------------------------------------------------------------------------------- /samples/wide-world-importers/workload-drivers/order-insert/database/types/website.order_line_list.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-postgresql/HEAD/samples/wide-world-importers/workload-drivers/order-insert/database/types/website.order_line_list.sql --------------------------------------------------------------------------------