39d084e493
After a few failed attempts at deploying my Elm application on NixOS, I'm trying elm2nix, which some NixOS and Elm users created to attempt to solve some of the issues that I ran into earlier today. Elm tries to write to $HOME, which NixOS doesn't like. I typically prefer to avoid things like cabal2nix, elm2nix, node2nix because I don't like the workflow that they suggest, but I'm so eager to deploy this application, that I'm trying it.
15 lines
375 B
HTML
15 lines
375 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Chord Drill Sergeant</title>
|
|
<link rel="stylesheet" href="./output.css" />
|
|
<script src="./Main.min.js"></script>
|
|
</head>
|
|
<body class="font-serif">
|
|
<div id="mount"></div>
|
|
<script>
|
|
Elm.Main.init({node: document.getElementById("mount")});
|
|
</script>
|
|
</body>
|
|
</html>
|