Compare commits
2 commits
8763513101
...
b6291e8202
| Author | SHA1 | Date | |
|---|---|---|---|
| b6291e8202 | |||
| 34cb308f9f |
2 changed files with 10 additions and 5 deletions
|
|
@ -8,7 +8,7 @@
|
||||||
/>
|
/>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<title>The Tough Guide to Fantasyland</title>
|
<title>The Tough Guide to Fantasyland</title>
|
||||||
<link rel="stylesheet" href="style.css" />
|
<link rel="stylesheet" href="style.css" inline />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="page">
|
<div class="page">
|
||||||
|
|
@ -17597,9 +17597,6 @@
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script
|
<script type="text/javascript" src="script.js" inline></script>
|
||||||
type="text/javascript"
|
|
||||||
src="script.js"
|
|
||||||
></script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
8
justfile
Normal file
8
justfile
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
deploy_dir := "/var/www/html/dungeon.red/fantasyland"
|
||||||
|
|
||||||
|
default: deploy
|
||||||
|
|
||||||
|
deploy:
|
||||||
|
mkdir -p {{deploy_dir}}
|
||||||
|
bunx inline-source-cli index.html {{deploy_dir}}/index.html
|
||||||
|
@echo "deployed to {{deploy_dir}}/index.html"
|
||||||
Loading…
Reference in a new issue