aboutsummaryrefslogtreecommitdiff
path: root/picarones-elm/index.html
diff options
context:
space:
mode:
authorstuebinm2021-03-07 23:52:19 +0100
committerstuebinm2021-03-07 23:52:19 +0100
commit92c1ef1af95740077282d773242fdd1820c8d15b (patch)
treee8b6feb39975f4b1126eb49f2c7564e2cf3dae34 /picarones-elm/index.html
parent09eeb58abb279e1049493460a7a99124aa4d9a78 (diff)
Added basic nixos module (and restructured some files)
Right now, this is capable of setting up a running instance of picarones in a couple lines of config (both backend server and the webapp, using nginx). More options should still be added, especially to make the backend's port configurable (but this requires adding features to the haskell code)
Diffstat (limited to 'picarones-elm/index.html')
-rw-r--r--picarones-elm/index.html21
1 files changed, 3 insertions, 18 deletions
diff --git a/picarones-elm/index.html b/picarones-elm/index.html
index 4fe72c7..156eb9c 100644
--- a/picarones-elm/index.html
+++ b/picarones-elm/index.html
@@ -3,32 +3,17 @@
<head>
<meta charset="UTF-8">
<title>Main</title>
- <script src="Main.js"></script>
+ <script src="Cover.js"></script>
<link rel="stylesheet" type="text/css" href="document.css" />
</head>
<body>
<div id="elm"></div>
<script>
- let args = location.hash.split("#").slice(1);
-
- var app = Elm.Main.init({
+ var app = Elm.Cover.init({
node: document.getElementById('elm'),
- flags: [args[0], parseInt(args[1])]
+ flags: "{{ baseurl }}"
});
-
- let ws = new WebSocket("ws://localhost:9160")
-
- ws.onopen = () => ws.send ("{\"room\":\"testroom\"}");
-
- ws.onmessage = function(msg) {
- console.log(msg.data)
- app.ports.recvPort.send(msg.data)
- }
-
- app.ports.sendPort.subscribe(function(msg) {
- ws.send(msg)
- })
</script>
</body>
</html>