🍎 Initial upload of the fridges api!

This commit is contained in:
rzmk 2022-03-08 01:10:30 -05:00
commit 89eb11b367
8 changed files with 494 additions and 0 deletions

17
templates/index.html Normal file
View file

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Main page!</title>
</head>
<body>
<h1>Welcome to the fridges repository!</h1>
<script type="text/javascript">
fetch("http://127.0.0.1:5000/", (response) => {
alert(response)
});
</script>
</body>
</html>