Skip to content

Commit

Permalink
Commenting the rest of proxy code in.
Browse files Browse the repository at this point in the history
  • Loading branch information
julialawrence committed Oct 23, 2023
1 parent 8deae73 commit aefade5
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,19 +447,19 @@ def vscode_proxy():
This route acts as a proxy for the VS Code server, forwarding requests and responses.
"""

return """<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Debug Page</title>
</head>
<body>
<h1>You're here</h1>
</body>
</html>"""

print(f"VSCode Proxy called with path: {path}")
# return """<!DOCTYPE html>
# <html lang="en">
# <head>
# <meta charset="UTF-8">
# <meta name="viewport" content="width=device-width, initial-scale=1.0">
# <title>Debug Page</title>
# </head>
# <body>
# <h1>You're here</h1>
# </body>
# </html>"""

print(f"VSCode Proxy called.")

user_info = session.get("user")
if not user_info:
Expand Down

0 comments on commit aefade5

Please sign in to comment.