Initial Commit

This commit is contained in:
2022-07-29 01:36:18 +02:00
commit 6c49c0a8c5
32 changed files with 4398 additions and 0 deletions

18
frontend/Trunk.toml Normal file
View File

@ -0,0 +1,18 @@
[serve]
address = "0.0.0.0"
[[proxy]]
# This WebSocket proxy example has a backend and ws field. This example will listen for
# WebSocket connections at `/api/ws` and proxy them to `ws://localhost:9000/api/ws`.
backend = "ws://localhost:8000/api/ws"
ws = true
#[[proxy]]
# This proxy example has a backend and a rewrite field. Requests received on `rewrite` will be
# proxied to the backend after rewriting the `rewrite` prefix to the `backend`'s URI prefix.
# E.G., `/api/v1/resource/x/y/z` -> `/resource/x/y/z`
#rewrite = "/api/"
#backend = "http://localhost:8000/api/"