- commit
- b2a1904
- parent
- 6b1e18b
- author
- WrathPak
- date
- 2025-06-09 17:38:00 -0600 MDT
Revert "Assembly instructions"
5 files changed,
+24,
-27
A
app.yaml
+23,
-0
1@@ -0,0 +1,23 @@
2+# At one point I was deploying this using Google App Engine.
3+# Then I discovered it would be cheaper to use my tiny cloud VM.
4+
5+runtime: go112
6+
7+instance_class: B1
8+
9+automatic_scaling:
10+ max_instances: 1
11+
12+handlers:
13+ - url: /chat
14+ script: auto
15+ - url: /hello
16+ script: auto
17+ - url: /
18+ static_files: static/index.html
19+ upload: static/index.html
20+ - url: /.*
21+ static_dir: static
22+
23+network:
24+ session_affinity: true
+1,
-1
1@@ -1,4 +1,4 @@
2-FROM golang:1.22.3-bookworm AS builder
3+FROM golang:1 AS builder
4
5 COPY . /src
6 COPY static /target/static
+0,
-1
1@@ -1 +0,0 @@
2-
+0,
-24
1@@ -1,24 +0,0 @@
2-<!DOCTYPE html>
3-<html>
4-<head>
5- <title>Assembly Instructions</title>
6- <meta charset="utf-8">
7- <meta name="viewport" content="width=device-width, initial-scale=1">
8- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css">
9- <link rel="stylesheet" href="vail.css">
10- <link rel="stylesheet" href="dark.css">
11-</head>
12-<body>
13- <section class="section">
14- <div class="container">
15- <h1 class="title">Assembly Instructions</h1>
16- <p>
17- <a href="BasicPCBV2.pdf" download>Click to download Basic PCB v2 DIY Kit Assembly Instructions</a>
18- </p>
19- <p>
20- <a href="index.html">Back to Home</a>
21- </p>
22- </div>
23- </section>
24-</body>
25-</html>
+0,
-1
1@@ -38,7 +38,6 @@
2 <div class="navbar-end">
3 <a class="navbar-item" href="https://discord.gg/GBzj8cBat7" target="_blank" title="Text/voice chat on Discord"><i class="mdi mdi-discord"></i></a>
4 <a class="navbar-item" href="https://github.com/nealey/vail/wiki" target="_blank" title="Vail Wiki">Help</a>
5- <a class="navbar-item" href="assembly.html">Assembly Instructions</a>
6 </div>
7 </div>
8 </nav>