mirror of
https://github.com/imjasonh/shell
synced 2026-07-07 00:12:34 +00:00
18 lines
748 B
HTML
18 lines
748 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Cloud Run Interactive Shell</title>
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/xterm/3.14.5/xterm.min.css" />
|
|
</head>
|
|
<body>
|
|
<div id="container"></div>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/3.1.0/socket.io.min.js"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/xterm/3.14.5/xterm.min.js"></script>
|
|
<script src="index.js"></script>
|
|
<p>The terminal above connects to a Cloud Run instance and runs any
|
|
commands there, in an isolated gVisor sandbox. Try <code>dmesg</code>!</p>
|
|
|
|
<p>Source available at <a href="https://github.com/imjasonh/shell">GitHub</a>.</p>
|
|
</body>
|
|
</html>
|