WrathPak
·
2025-06-09
app.yaml
1# At one point I was deploying this using Google App Engine.
2# Then I discovered it would be cheaper to use my tiny cloud VM.
3
4runtime: go112
5
6instance_class: B1
7
8automatic_scaling:
9 max_instances: 1
10
11handlers:
12 - url: /chat
13 script: auto
14 - url: /hello
15 script: auto
16 - url: /
17 static_files: static/index.html
18 upload: static/index.html
19 - url: /.*
20 static_dir: static
21
22network:
23 session_affinity: true