add webtest.cmd for python testing of webserver

This commit is contained in:
Simon Schmidt 2021-06-21 09:55:03 +02:00
parent 407581451b
commit d0b824963b
3 changed files with 4 additions and 3 deletions

View File

@ -4,7 +4,7 @@
<meta charset="utf-8"> <meta charset="utf-8">
<title>My test page</title> <title>My test page</title>
<link href="http://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css"> <link href="http://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet" type="text/css">
<link href="styles/style.css" rel="stylesheet" type="text/css"> <link href="style.css" rel="stylesheet" type="text/css">
</head> </head>
<body> <body>
<h1>Mozilla is cool</h1> <h1>Mozilla is cool</h1>

2
include/webtest.cmd Normal file
View File

@ -0,0 +1,2 @@
CD .\include\http
py.exe -m http.server

View File

@ -81,9 +81,8 @@ void setup_webserver() {
Serial.print("IP address: "); Serial.print("IP address: ");
Serial.println(WiFi.localIP()); Serial.println(WiFi.localIP());
//server.on("/", handleRoot);
server.on("/", handleRootGz); server.on("/", handleRootGz);
server.on("/styles/style.css", handleCssGz); server.on("/style.css", handleCssGz);
server.onNotFound(handleNotFound); server.onNotFound(handleNotFound);
server.begin(); server.begin();