aboutsummaryrefslogtreecommitdiff
path: root/build/berg/index.html
diff options
context:
space:
mode:
authorbt <bt@btxx.org>2024-06-08 13:22:19 -0400
committerbt <bt@btxx.org>2024-06-08 13:22:19 -0400
commitdcfb172704f3afb68a30425029ec834be2883274 (patch)
tree02ac480745db802d7af03f3213a0c568322170e3 /build/berg/index.html
parente146f8a64c793c337999ce316b16ebe5fe6f2dab (diff)
More content porting, on-going markdown changes for lowdown support
Diffstat (limited to 'build/berg/index.html')
-rw-r--r--build/berg/index.html71
1 files changed, 50 insertions, 21 deletions
diff --git a/build/berg/index.html b/build/berg/index.html
index f00560b..a761347 100644
--- a/build/berg/index.html
+++ b/build/berg/index.html
@@ -1,54 +1,83 @@
<!doctype html>
-<html lang="en" id="top">
+<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="data:,">
<title>Hosting with Codeberg Pages</title>
- <link href="https://bt.ht/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
- <style>*{box-sizing:border-box;}body{font-family:sans-serif;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{overflow:auto;}table{text-align:left;width:100%;}</style>
+ <link href="/atom.xml" type="application/atom+xml" rel="alternate" title="Atom feed for blog posts" />
+ <link href="/rss.xml" type="application/rss+xml" rel="alternate" title="RSS feed for blog posts" />
+<style>*{box-sizing:border-box;}body{font-family:sans-serif;line-height:1.33;margin:0 auto;max-width:650px;padding:1rem;}img{max-width:100%;}pre{border:1px solid;overflow:auto;padding:5px;}table{text-align:left;width:100%;}.footnotes{font-size:90%;}</style>
</head>
<nav>
- <a href="#menu">Menu &darr;</a>
+ <a href="#menu">Menu &darr;</a>
</nav>
<main>
-<h1>Hosting with Codeberg Pages</h1>
+<h1 id="hosting-with-codeberg-pages">Hosting with Codeberg Pages</h1>
+
<p>2022-07-29</p>
+
<p>I recently switched the <a href="https://pblog.bt.ht">pblog</a> project repo over from Sourcehut to Codeberg (mostly for UX reasons) and it got me looking into <a href="https://codeberg.page">Codeberg Pages</a>. It seemed like a cleaner approach to host my personal blog on the same platform I planned to also share the source code.</p>
-<p>I decided to share the setup process here since I couldn't find a straightforward guide explaining everything required to get going. So, let's dig in.</p>
-<h2>Create the Repos</h2>
+
+<p>I decided to share the setup process here since I couldn&#8217;t find a straightforward guide explaining everything required to get going. So, let&#8217;s dig in.</p>
+
+<h2 id="create-the-repos">Create the Repos</h2>
+
<p><strong>Disclaimer</strong>: My personal blog uses <a href="https://pblog.bt.ht">pblog</a>, so although these instructions will be catered towards that SSG the same concept <em>should</em> apply for any other generator (Jekyll, Hugo, Next, etc.).</p>
-<p>The first step is to create the main repo that would house the core files of <code>pblog</code>. Then we need to make a separate repo simply called <code>pages</code>. This second project is where all the generated "static" files get rendered.</p>
+
+<p>The first step is to create the main repo that would house the core files of <code>pblog</code>. Then we need to make a separate repo simply called <code>pages</code>. This second project is where all the generated &#8220;static&#8221; files get rendered.</p>
+
<p><em>Side note</em>: Be sure to at least include a <code>README</code> file in that <code>pages</code> repo. This will avoid any errors or warnings when setting up our submodules in the next steps.</p>
-<h2>Configuration Edits</h2>
+
+<h2 id="configuration-edits">Configuration Edits</h2>
+
<p>Once your two repos are created, you will need to make some minor edits to the <code>_config.sh</code> in the core <code>pblog</code> project to tell the build script where the generated files should go (in this case the <code>pages</code> repo):</p>
-<pre><code>OUTPUT=&quot;_output/pages/&quot;
+
+<pre><code>OUTPUT="_output&#47;pages&#47;"
</code></pre>
-<h2>The Submodule</h2>
-<p>Using terminal, navigate to the <code>_output/</code> directory in your core <code>pblog</code> project. Run the following, remembering to replace the USERNAME parameter with your own:</p>
-<pre><code>git submodule add git@codeberg.org:USERNAME/pages.git
+
+<h2 id="the-submodule">The Submodule</h2>
+
+<p>Using terminal, navigate to the <code>_output&#47;</code> directory in your core <code>pblog</code> project. Run the following, remembering to replace the USERNAME parameter with your own:</p>
+
+<pre><code>git submodule add git@codeberg.org:USERNAME&#47;pages.git
</code></pre>
+
<p>If everything worked correctly you should now have a <code>.gitmodules</code> file in your main <code>pblog</code> project. If you get any errors, you might need to include the name of the directory at the end of the command:</p>
-<pre><code>git submodule add git@codeberg.org:USERNAME/pages.git pages
+
+<pre><code>git submodule add git@codeberg.org:USERNAME&#47;pages.git pages
</code></pre>
-<h2>The Workflow</h2>
-<p>Now you can make changes, add new posts and pages in the main <code>pblog</code> project and have those generated files render into your other <code>pages</code> repo. For this workflow, I simply push commits to both projects when I am happy with my changes but I'm sure you could look into automating this process (ie. a single push from the <code>pblog</code> repo forces a the <code>pages</code> repo to also update).</p>
+
+<h2 id="the-workflow">The Workflow</h2>
+
+<p>Now you can make changes, add new posts and pages in the main <code>pblog</code> project and have those generated files render into your other <code>pages</code> repo. For this workflow, I simply push commits to both projects when I am happy with my changes but I&#8217;m sure you could look into automating this process (ie. a single push from the <code>pblog</code> repo forces a the <code>pages</code> repo to also update).</p>
+
<p>Now you can navigate to the standard Codeberg Pages URL to see it in action:</p>
+
<pre><code>USERNAME.codeberg.page
</code></pre>
-<p>If you want to use your own custom domain (who doesn't?) then continue reading.</p>
-<h2>Custom Domains (Optional)</h2>
+
+<p>If you want to use your own custom domain (who doesn&#8217;t?) then continue reading.</p>
+
+<h2 id="custom-domains-optional">Custom Domains (Optional)</h2>
+
<p>The first thing you will need to do is add a <code>.domains</code> file to your <code>pages</code> root directory. In this file you will want to list your custom domain on the first line, followed by the standard Codeberg pages URL below it. Like so:</p>
+
<pre><code>yourcustomdomain.com
USERNAME.codeberg.page
</code></pre>
-<p>I'm keeping this very basic, but I suggest you look further into the <a href="https://docs.codeberg.org/codeberg-pages/#custom-domains">official documentation</a> if there are any extra settings you'd like to tinker with.</p>
+
+<p>I&#8217;m keeping this very basic, but I suggest you look further into the <a href="https://docs.codeberg.org/codeberg-pages/#custom-domains">official documentation</a> if there are any extra settings you&#8217;d like to tinker with.</p>
+
<p>The final step is configuring a <code>CNAME</code> DNS setting through your registrar:</p>
-<pre><code>@ -&gt; USERNAME.codeberg.page
+
+<pre><code>@ -&#62; USERNAME.codeberg.page
</code></pre>
-<p>Give the DNS settings a bit of time to take (24-48 hours) and you'll have your custom domain working just fine.</p>
+
+<p>Give the DNS settings a bit of time to take (24-48 hours) and you&#8217;ll have your custom domain working just fine.</p>
+
<p>Happy hosting!</p>
<footer role="contentinfo">
<h2>Menu Navigation</h2>