build under prod env
This commit is contained in:
@@ -83,55 +83,4 @@
|
||||
</body>
|
||||
|
||||
|
||||
<script>
|
||||
function log(message) {
|
||||
if (true) {
|
||||
console.log(`[web_dev_utils] ${message}`)
|
||||
}
|
||||
}
|
||||
function connect() {
|
||||
try {
|
||||
window.socket = new WebSocket('ws://' + location.host + '/ws');
|
||||
|
||||
window.socket.onmessage = function(e) {
|
||||
if (e.data === "reload") {
|
||||
log("reloading!");
|
||||
location.reload();
|
||||
} else if (e.data === "subscribed") {
|
||||
log("connected and subscribed!");
|
||||
}
|
||||
}
|
||||
|
||||
window.socket.onopen = () => {
|
||||
waitForConnection(() => {
|
||||
log("sending 'subscribe' message");
|
||||
window.socket.send("subscribe")
|
||||
}
|
||||
, 300);
|
||||
};
|
||||
|
||||
window.socket.onclose = () => {
|
||||
setTimeout(() => connect(), 500);
|
||||
};
|
||||
|
||||
function waitForConnection(callback, interval) {
|
||||
log("waiting for connection!")
|
||||
if (window.socket.readyState === 1) {
|
||||
callback();
|
||||
} else {
|
||||
log("setting a timeout")
|
||||
setTimeout(() => waitForConnection(callback, interval), interval);
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
log(e);
|
||||
setTimeout(() => connect(), 500);
|
||||
}
|
||||
}
|
||||
|
||||
log("about to connect");
|
||||
connect();
|
||||
</script>
|
||||
|
||||
|
||||
</html>
|
@@ -80,55 +80,4 @@
|
||||
</body>
|
||||
|
||||
|
||||
<script>
|
||||
function log(message) {
|
||||
if (true) {
|
||||
console.log(`[web_dev_utils] ${message}`)
|
||||
}
|
||||
}
|
||||
function connect() {
|
||||
try {
|
||||
window.socket = new WebSocket('ws://' + location.host + '/ws');
|
||||
|
||||
window.socket.onmessage = function(e) {
|
||||
if (e.data === "reload") {
|
||||
log("reloading!");
|
||||
location.reload();
|
||||
} else if (e.data === "subscribed") {
|
||||
log("connected and subscribed!");
|
||||
}
|
||||
}
|
||||
|
||||
window.socket.onopen = () => {
|
||||
waitForConnection(() => {
|
||||
log("sending 'subscribe' message");
|
||||
window.socket.send("subscribe")
|
||||
}
|
||||
, 300);
|
||||
};
|
||||
|
||||
window.socket.onclose = () => {
|
||||
setTimeout(() => connect(), 500);
|
||||
};
|
||||
|
||||
function waitForConnection(callback, interval) {
|
||||
log("waiting for connection!")
|
||||
if (window.socket.readyState === 1) {
|
||||
callback();
|
||||
} else {
|
||||
log("setting a timeout")
|
||||
setTimeout(() => waitForConnection(callback, interval), interval);
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
log(e);
|
||||
setTimeout(() => connect(), 500);
|
||||
}
|
||||
}
|
||||
|
||||
log("about to connect");
|
||||
connect();
|
||||
</script>
|
||||
|
||||
|
||||
</html>
|
@@ -1,16 +1,16 @@
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<atom:link href="http://localhost:4999/feed.xml" rel="self" type="application/rss+xml" />
|
||||
<atom:link href="https://example.com/feed.xml" rel="self" type="application/rss+xml" />
|
||||
<title>monotab</title>
|
||||
<link>http://localhost:4999</link>
|
||||
<link>https://example.com</link>
|
||||
<description>My beautiful website</description>
|
||||
<language>en-us</language>
|
||||
<generator>Tableau v0.26.0</generator>
|
||||
<item>
|
||||
<title>Test Post: Getting Started with Elixir</title>
|
||||
<link>http://localhost:4999/2024-01-15-test-post</link>
|
||||
<link>https://example.com/2024-01-15-test-post</link>
|
||||
<pubDate>Mon, 15 Jan 2024 00:00:00 UTC</pubDate>
|
||||
<guid>http://localhost:4999/2024-01-15-test-post</guid>
|
||||
<guid>https://example.com/2024-01-15-test-post</guid>
|
||||
<description><![CDATA[ <h1><a inert href="#getting-started-with-elixir" aria-hidden="true" class="anchor" id="getting-started-with-elixir"></a>Getting Started with Elixir</h1>
|
||||
<p>Elixir is a dynamic, functional language designed for building scalable and maintainable applications. It leverages the Erlang VM, known for running low-latency, distributed, and fault-tolerant systems.</p>
|
||||
<h2><a inert href="#key-features" aria-hidden="true" class="anchor" id="key-features"></a>Key Features</h2>
|
||||
|
@@ -57,55 +57,4 @@
|
||||
</body>
|
||||
|
||||
|
||||
<script>
|
||||
function log(message) {
|
||||
if (true) {
|
||||
console.log(`[web_dev_utils] ${message}`)
|
||||
}
|
||||
}
|
||||
function connect() {
|
||||
try {
|
||||
window.socket = new WebSocket('ws://' + location.host + '/ws');
|
||||
|
||||
window.socket.onmessage = function(e) {
|
||||
if (e.data === "reload") {
|
||||
log("reloading!");
|
||||
location.reload();
|
||||
} else if (e.data === "subscribed") {
|
||||
log("connected and subscribed!");
|
||||
}
|
||||
}
|
||||
|
||||
window.socket.onopen = () => {
|
||||
waitForConnection(() => {
|
||||
log("sending 'subscribe' message");
|
||||
window.socket.send("subscribe")
|
||||
}
|
||||
, 300);
|
||||
};
|
||||
|
||||
window.socket.onclose = () => {
|
||||
setTimeout(() => connect(), 500);
|
||||
};
|
||||
|
||||
function waitForConnection(callback, interval) {
|
||||
log("waiting for connection!")
|
||||
if (window.socket.readyState === 1) {
|
||||
callback();
|
||||
} else {
|
||||
log("setting a timeout")
|
||||
setTimeout(() => waitForConnection(callback, interval), interval);
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
log(e);
|
||||
setTimeout(() => connect(), 500);
|
||||
}
|
||||
}
|
||||
|
||||
log("about to connect");
|
||||
connect();
|
||||
</script>
|
||||
|
||||
|
||||
</html>
|
@@ -67,55 +67,4 @@
|
||||
</body>
|
||||
|
||||
|
||||
<script>
|
||||
function log(message) {
|
||||
if (true) {
|
||||
console.log(`[web_dev_utils] ${message}`)
|
||||
}
|
||||
}
|
||||
function connect() {
|
||||
try {
|
||||
window.socket = new WebSocket('ws://' + location.host + '/ws');
|
||||
|
||||
window.socket.onmessage = function(e) {
|
||||
if (e.data === "reload") {
|
||||
log("reloading!");
|
||||
location.reload();
|
||||
} else if (e.data === "subscribed") {
|
||||
log("connected and subscribed!");
|
||||
}
|
||||
}
|
||||
|
||||
window.socket.onopen = () => {
|
||||
waitForConnection(() => {
|
||||
log("sending 'subscribe' message");
|
||||
window.socket.send("subscribe")
|
||||
}
|
||||
, 300);
|
||||
};
|
||||
|
||||
window.socket.onclose = () => {
|
||||
setTimeout(() => connect(), 500);
|
||||
};
|
||||
|
||||
function waitForConnection(callback, interval) {
|
||||
log("waiting for connection!")
|
||||
if (window.socket.readyState === 1) {
|
||||
callback();
|
||||
} else {
|
||||
log("setting a timeout")
|
||||
setTimeout(() => waitForConnection(callback, interval), interval);
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
log(e);
|
||||
setTimeout(() => connect(), 500);
|
||||
}
|
||||
}
|
||||
|
||||
log("about to connect");
|
||||
connect();
|
||||
</script>
|
||||
|
||||
|
||||
</html>
|
@@ -1 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"><url><loc>http://localhost:4999/posts</loc></url><url><loc>http://localhost:4999/</loc></url><url><loc>http://localhost:4999/about</loc></url><url><lastmod>2024-01-15T00:00:00Z</lastmod><loc>http://localhost:4999/2024-01-15-test-post</loc></url></urlset>
|
||||
<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd"><url><loc>https://example.com/posts</loc></url><url><loc>https://example.com/</loc></url><url><loc>https://example.com/about</loc></url><url><lastmod>2024-01-15T00:00:00Z</lastmod><loc>https://example.com/2024-01-15-test-post</loc></url></urlset>
|
Reference in New Issue
Block a user