Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,23 @@ At some point a PixelForge replacement will be implemented, though this requires
# Web USB App (No Download Required)
This repository now includes a browser-based interface in `/web` so users can connect to a Gameband from a web page without installing the desktop launcher.

## Open the website app
If you host this repository as a static website, opening the site root will automatically redirect to the web app.

## Run locally
From the project root:

```bash
python3 -m http.server 8080
```

Then open:
Then open either:

```
http://localhost:8080/
```

or:

```
http://localhost:8080/web/
Expand Down
13 changes: 13 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OpenGameband</title>
<meta http-equiv="refresh" content="0; url=web/">
</head>
<body>
<p>Redirecting to the OpenGameband web app...</p>
<p>If you are not redirected automatically, <a href="web/">open the app here</a>.</p>
</body>
</html>
Loading