-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Log editor tabs * Fixed towncrier CI * Changelog entry * This may work * Manually open file * Debug log * Maybe works? * Maybe * ??? * media * God this works * No flask * lint
- Loading branch information
Showing
7 changed files
with
56 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Pinned worker to `ubuntu-24.04`, changed towncrier check to run inside `uv`, fixed E2E test suite. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
from http.server import BaseHTTPRequestHandler, HTTPServer | ||
|
||
class HTTPRequestHandler(BaseHTTPRequestHandler): | ||
def do_GET(self): | ||
print("GET: Request completed") | ||
self.send_response(200) | ||
self.send_header("Content-type", "application/json") | ||
self.send_header("Content-Length", len("GET")) | ||
self.end_headers() | ||
self.wfile.write("GET".encode('utf8')) | ||
|
||
if __name__ == "__main__": | ||
server_address = ('0.0.0.0', 80) | ||
httpd = HTTPServer(server_address, HTTPRequestHandler) | ||
print("Local app started") | ||
httpd.serve_forever() |