Browse Source

add webtest.cmd for python testing of webserver

tags/v0.1.0
Simon Schmidt 2 years ago
parent
commit
d0b824963b
3 changed files with 4 additions and 3 deletions
  1. 1
    1
      include/http/index.html
  2. 2
    0
      include/webtest.cmd
  3. 1
    2
      src/main.cpp

+ 1
- 1
include/http/index.html View File

@@ -4,7 +4,7 @@
<meta charset="utf-8">
<title>My test page</title>
<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>
<body>
<h1>Mozilla is cool</h1>

+ 2
- 0
include/webtest.cmd View File

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

+ 1
- 2
src/main.cpp View File

@@ -81,9 +81,8 @@ void setup_webserver() {
Serial.print("IP address: ");
Serial.println(WiFi.localIP());

//server.on("/", handleRoot);
server.on("/", handleRootGz);
server.on("/styles/style.css", handleCssGz);
server.on("/style.css", handleCssGz);
server.onNotFound(handleNotFound);

server.begin();

Loading…
Cancel
Save