Skip to content

Commit

Permalink
new demo app az url
Browse files Browse the repository at this point in the history
  • Loading branch information
henrybravo committed Jun 22, 2024
1 parent 51f179b commit 9e91416
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ or

### demo

A demo version of this webapp is deployed here: [ssl-checker-webapp.icygrass-78f2682a.westeurope.azurecontainerapps.io](https://ssl-checker-webapp.icygrass-78f2682a.westeurope.azurecontainerapps.io) - *as this az containerapp scales to 0 when idle, it has a cold start of 30 secs to come back up ;-)*
A demo version of this webapp is deployed here: [ssl-checker-webapp.whitemushroom-73af22bc.westeurope.azurecontainerapps.io](https://ssl-checker-webapp.whitemushroom-73af22bc.westeurope.azurecontainerapps.io) - *as this az containerapp scales to 0 when idle, it has a cold start of 30 secs to come back up*

### github copilot
This webapp written in php and js is the result of test-driving copilot 'on a sunday afternoon'. The potential of working this way is huge, and the experience is simply awesome!
22 changes: 11 additions & 11 deletions webapp/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ function initializeBackgroundSlideshow() {
// Components
slide_links : 'false', // Individual links for each slide (Options: false, 'num', 'name', 'blank')
slides : [ // Slideshow Images
{image : './img/195c8e0b3fcb2101b6ca0f02e9ba44b0.jpg', title : '', thumb : '', url : ''},
{image : './img/63923308b6ff377f22eb9b1e95976ed2.jpg', title : '', thumb : '', url : ''},
{image : './img/b6df4f7c518db4a2ad469ce192b19f4e.jpg', title : '', thumb : '', url : ''},
{image : './img/54aaa216ce9197179d8713d76e9d036c.jpg', title : '', thumb : '', url : ''},
{image : './img/8128ff7ca857daa8fe622a7893454bf0.jpg', title : '', thumb : '', url : ''},
{image : './img/be456e609897237c04e9e930e9299299.jpg', title : '', thumb : '', url : ''},
{image : './img/f6d9e897f34ecbec5a516dd5e0360178.jpg', title : '', thumb : '', url : ''},
{image : './img/62245a04acae62e88c6ece15a42b451b.jpg', title : '', thumb : '', url : ''},
{image : './img/8138caa05ac45dc6073cd063a72e7abc.jpg', title : '', thumb : '', url : ''},
{image : './img/c1013e8f23a404a1e537db1183444c74.jpg', title : '', thumb : '', url : ''},
{image : 'img/195c8e0b3fcb2101b6ca0f02e9ba44b0.jpg', title : '', thumb : '', url : ''},
{image : 'img/63923308b6ff377f22eb9b1e95976ed2.jpg', title : '', thumb : '', url : ''},
{image : 'img/b6df4f7c518db4a2ad469ce192b19f4e.jpg', title : '', thumb : '', url : ''},
{image : 'img/54aaa216ce9197179d8713d76e9d036c.jpg', title : '', thumb : '', url : ''},
{image : 'img/8128ff7ca857daa8fe622a7893454bf0.jpg', title : '', thumb : '', url : ''},
{image : 'img/be456e609897237c04e9e930e9299299.jpg', title : '', thumb : '', url : ''},
{image : 'img/f6d9e897f34ecbec5a516dd5e0360178.jpg', title : '', thumb : '', url : ''},
{image : 'img/62245a04acae62e88c6ece15a42b451b.jpg', title : '', thumb : '', url : ''},
{image : 'img/8138caa05ac45dc6073cd063a72e7abc.jpg', title : '', thumb : '', url : ''},
{image : 'img/c1013e8f23a404a1e537db1183444c74.jpg', title : '', thumb : '', url : ''},
]
});
});
Expand Down Expand Up @@ -93,7 +93,7 @@ function initializeBackgroundSlideshow() {
// Send an AJAX request to the server
$.ajax({
type: "POST",
url: "./ssl_check.php", // Ensure this URL is correct
url: "ssl_check.php", // Ensure this URL is correct
data: { domain: domain },
dataType: "json", // Expecting JSON response
success: function(response) {
Expand Down

0 comments on commit 9e91416

Please sign in to comment.