removed the cloudflare credentials and yml from up

This commit is contained in:
admin 2025-07-04 22:50:24 -06:00
parent d41bd87c34
commit e9d5af3d24
39 changed files with 1220 additions and 225 deletions

2
.gitignore vendored
View File

@ -8,3 +8,5 @@
.env*
/configs/cloudflare/*.json
/configs/cloudflare/*.yaml
/configs/cloudflare/*.yml

View File

@ -1,27 +1,27 @@
# Cloudflare Tunnel Configuration for bnkserve.org
# Generated by Changemaker.lite start-production.sh on Thu 03 Jul 2025 07:24:57 AM MDT
# Cloudflare Tunnel Configuration for cmlite.org
# Generated by Changemaker.lite start-production.sh on Fri 04 Jul 2025 10:47:26 PM MDT
tunnel: 2fff7cb3-7dd8-407f-86fd-7a681c1e5630
credentials-file: /home/bunker-mobile-lab/changemaker.lite/configs/cloudflare/2fff7cb3-7dd8-407f-86fd-7a681c1e5630.json
tunnel: 124583b0-85ef-41ab-b146-97112a4543de
credentials-file: /mnt/storagessd1tb/changemaker.lite.dev/changemaker.lite/configs/cloudflare/124583b0-85ef-41ab-b146-97112a4543de.json
ingress:
- hostname: homepage.bnkserve.org
- hostname: homepage.cmlite.org
service: http://localhost:3010
- hostname: code.bnkserve.org
- hostname: code.cmlite.org
service: http://localhost:8888
- hostname: listmonk.bnkserve.org
service: http://localhost:9000
- hostname: docs.bnkserve.org
- hostname: listmonk.cmlite.org
service: http://localhost:9001
- hostname: docs.cmlite.org
service: http://localhost:4000
- hostname: bnkserve.org
service: http://localhost:4001
- hostname: n8n.bnkserve.org
- hostname: cmlite.org
service: http://localhost:4002
- hostname: n8n.cmlite.org
service: http://localhost:5678
- hostname: db.bnkserve.org
- hostname: db.cmlite.org
service: http://localhost:8090
- hostname: git.bnkserve.org
- hostname: git.cmlite.org
service: http://localhost:3030
- hostname: map.bnkserve.org
- hostname: map.cmlite.org
service: http://localhost:3000
- hostname: qr.bnkserve.org
- hostname: qr.cmlite.org
service: http://localhost:8089
- service: http_status:404

View File

@ -5,25 +5,25 @@
- Code Server:
icon: mdi-code-braces
href: "https://code.bnkserve.org"
href: "https://code.cmlite.org"
description: VS Code in the browser - Platform Editor
container: code-server-changemaker
- Listmonk:
icon: mdi-email-newsletter
href: "https://listmonk.bnkserve.org"
href: "https://listmonk.cmlite.org"
description: Newsletter & mailing list manager
container: listmonk_app
- NocoDB:
icon: mdi-database
href: "https://db.bnkserve.org"
href: "https://db.cmlite.org"
description: No-code database platform
container: changemakerlite-nocodb-1
- Map Server:
icon: mdi-map
href: "https://map.bnkserve.org"
href: "https://map.cmlite.org"
description: Map server for geospatial data
container: nocodb-map-viewer
@ -37,13 +37,13 @@
- MkDocs (Live):
icon: mdi-book-open-page-variant
href: "https://docs.bnkserve.org"
href: "https://docs.cmlite.org"
description: Live documentation server with hot reload
container: mkdocs-changemaker
- Mini QR:
icon: mdi-qrcode
href: "https://qr.bnkserve.org"
href: "https://qr.cmlite.org"
description: QR code generator
container: mini-qr
@ -51,7 +51,7 @@
- Automation & Infrastructure:
- n8n:
icon: mdi-robot-industrial
href: "https://n8n.bnkserve.org"
href: "https://n8n.cmlite.org"
description: Workflow automation platform
container: n8n-changemaker
@ -69,6 +69,6 @@
- Gitea:
icon: mdi-git
href: "https://git.bnkserve.org"
href: "https://git.cmlite.org"
description: Git repository hosting
container: gitea_changemaker

View File

@ -39,24 +39,28 @@ code --version
### 1. Install the Remote Development Extensions
**Option A: Install Remote Development Pack (Recommended)**
1. Open VSCode
2. Press **Ctrl+Shift+X** (or **Cmd+Shift+X** on Mac)
3. Search for **"Remote Development"**
4. Install the **Remote Development extension pack** by Microsoft
This pack includes:
- Remote - SSH
- Remote - SSH: Editing Configuration Files
- Remote - Containers
- Remote - WSL (Windows only)
**Option B: Install Individual Extension**
1. Search for **"Remote - SSH"**
2. Install **Remote - SSH** by Microsoft
### 2. Verify Installation
After installation, the following should be visible:
- Remote Explorer icon in the Activity Bar (left sidebar)
- "Remote-SSH" commands in Command Palette (Ctrl+Shift+P)
@ -65,6 +69,7 @@ After installation, the following should be visible:
### 1. Access SSH Configuration
**Method A: Through VSCode**
1. Press **Ctrl+Shift+P** to open Command Palette
2. Type **"Remote-SSH: Open SSH Configuration File..."**
3. Select the SSH config file (usually the first option)
@ -100,6 +105,7 @@ Host node2
```
**Configuration Options Explained:**
- `Host`: Friendly name for the connection
- `HostName`: Tailscale IP address
- `User`: Username on the remote server
@ -143,6 +149,7 @@ chmod 644 ~/.ssh/id_rsa.pub
### 4. First Connection Process
On first connection, VSCode will:
1. **Verify the host key** (click "Continue" if prompted)
2. **Install VSCode Server** on the remote machine (automatic)
3. **Open a remote window** with access to the remote file system
@ -174,6 +181,7 @@ code /opt/myproject
Extensions must be installed separately on the remote server:
**Essential Development Extensions:**
1. **Python** (Microsoft) - Python development
2. **GitLens** (GitKraken) - Enhanced Git capabilities
3. **Docker** (Microsoft) - Container development
@ -182,6 +190,7 @@ Extensions must be installed separately on the remote server:
6. **Auto Rename Tag** - HTML/XML tag editing
**To Install:**
1. Go to Extensions (Ctrl+Shift+X)
2. Find the desired extension
3. Click **"Install in SSH: node1"** (not local install)
@ -202,6 +211,7 @@ git clone https://github.com/<username>/<repo>.git
### 1. File Management
**File Explorer:**
- Shows remote server's file system
- Create, edit, delete files directly
- Drag and drop between local and remote (limited)
@ -218,6 +228,7 @@ scp <username>@<tailscale-ip>:/remote/path/file.txt ./local/path/
### 2. Terminal Usage
**Integrated Terminal:**
- Press **Ctrl+`** to open terminal
- Runs directly on remote server
- Multiple terminals supported
@ -245,6 +256,7 @@ sudo docker-compose up -d
VSCode automatically detects and forwards common development ports.
**Manual Port Forwarding:**
1. Open **Ports** tab in terminal panel
2. Click **"Forward a Port"**
3. Enter port number (e.g., 3000, 8080, 5000)
@ -316,11 +328,13 @@ Create remote-specific settings:
### 2. Multi-Server Management
**Switch Between Servers:**
1. Click remote indicator (bottom-left)
2. Select **"Connect to Host..."**
3. Choose a different server
**Compare Files Across Servers:**
1. Open file from server A
2. Connect to server B in new window
3. Open corresponding file
@ -329,6 +343,7 @@ Create remote-specific settings:
### 3. Sync Configuration
**Settings Sync:**
1. Enable Settings Sync in VSCode
2. Settings, extensions, and keybindings sync to remote
3. Consistent experience across all servers
@ -394,6 +409,7 @@ EOF
```
**VSCode Docker Integration:**
- Install Docker extension on remote
- Right-click Dockerfile → "Build Image"
- Manage containers from VSCode interface
@ -450,6 +466,7 @@ ssh-keygen -R <tailscale-ip>
**Problem: Extensions not working on remote**
**Solutions:**
1. Install extensions specifically for the remote server
2. Check extension compatibility with remote development
3. Reload VSCode window: Ctrl+Shift+P → "Developer: Reload Window"

View File

@ -7,10 +7,10 @@
"stars_count": 0,
"forks_count": 0,
"open_issues_count": 0,
"updated_at": "2025-07-02T11:49:44-06:00",
"updated_at": "2025-07-04T14:31:11-06:00",
"created_at": "2025-05-28T14:54:59-06:00",
"clone_url": "https://gitea.bnkops.com/admin/changemaker.lite.git",
"ssh_url": "git@gitea.bnkops.com:admin/changemaker.lite.git",
"default_branch": "main",
"last_build_update": "2025-07-02T11:49:44-06:00"
"last_build_update": "2025-07-04T14:31:11-06:00"
}

View File

@ -4,13 +4,13 @@
"description": "Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.",
"html_url": "https://github.com/anthropics/claude-code",
"language": "PowerShell",
"stars_count": 17031,
"forks_count": 941,
"open_issues_count": 1508,
"updated_at": "2025-07-03T05:19:19Z",
"stars_count": 17373,
"forks_count": 959,
"open_issues_count": 1578,
"updated_at": "2025-07-04T21:17:51Z",
"created_at": "2025-02-22T17:41:21Z",
"clone_url": "https://github.com/anthropics/claude-code.git",
"ssh_url": "git@github.com:anthropics/claude-code.git",
"default_branch": "main",
"last_build_update": "2025-07-03T03:54:14Z"
"last_build_update": "2025-07-03T21:09:58Z"
}

View File

@ -4,10 +4,10 @@
"description": "VS Code in the browser",
"html_url": "https://github.com/coder/code-server",
"language": "TypeScript",
"stars_count": 72541,
"forks_count": 6067,
"open_issues_count": 141,
"updated_at": "2025-07-03T05:17:24Z",
"stars_count": 72668,
"forks_count": 6074,
"open_issues_count": 143,
"updated_at": "2025-07-04T18:33:06Z",
"created_at": "2019-02-27T16:50:41Z",
"clone_url": "https://github.com/coder/code-server.git",
"ssh_url": "git@github.com:coder/code-server.git",

View File

@ -4,13 +4,13 @@
"description": "A highly customizable homepage (or startpage / application dashboard) with Docker and service API integrations.",
"html_url": "https://github.com/gethomepage/homepage",
"language": "JavaScript",
"stars_count": 24619,
"forks_count": 1520,
"open_issues_count": 1,
"updated_at": "2025-07-03T03:29:15Z",
"stars_count": 24643,
"forks_count": 1522,
"open_issues_count": 2,
"updated_at": "2025-07-04T19:49:50Z",
"created_at": "2022-08-24T07:29:42Z",
"clone_url": "https://github.com/gethomepage/homepage.git",
"ssh_url": "git@github.com:gethomepage/homepage.git",
"default_branch": "dev",
"last_build_update": "2025-07-03T00:36:38Z"
"last_build_update": "2025-07-04T12:13:48Z"
}

View File

@ -4,13 +4,13 @@
"description": "Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD",
"html_url": "https://github.com/go-gitea/gitea",
"language": "Go",
"stars_count": 49349,
"forks_count": 5892,
"open_issues_count": 2702,
"updated_at": "2025-07-03T03:52:23Z",
"stars_count": 49370,
"forks_count": 5897,
"open_issues_count": 2711,
"updated_at": "2025-07-04T20:42:00Z",
"created_at": "2016-11-01T02:13:26Z",
"clone_url": "https://github.com/go-gitea/gitea.git",
"ssh_url": "git@github.com:go-gitea/gitea.git",
"default_branch": "main",
"last_build_update": "2025-07-03T03:02:38Z"
"last_build_update": "2025-07-04T15:41:19Z"
}

View File

@ -4,10 +4,10 @@
"description": "High performance, self-hosted, newsletter and mailing list manager with a modern dashboard. Single binary app.",
"html_url": "https://github.com/knadh/listmonk",
"language": "Go",
"stars_count": 17250,
"forks_count": 1658,
"open_issues_count": 101,
"updated_at": "2025-07-03T01:26:41Z",
"stars_count": 17261,
"forks_count": 1659,
"open_issues_count": 103,
"updated_at": "2025-07-04T18:22:09Z",
"created_at": "2019-06-26T05:08:39Z",
"clone_url": "https://github.com/knadh/listmonk.git",
"ssh_url": "git@github.com:knadh/listmonk.git",

View File

@ -4,10 +4,10 @@
"description": "Create & scan cute qr codes easily \ud83d\udc7e",
"html_url": "https://github.com/lyqht/mini-qr",
"language": "Vue",
"stars_count": 1254,
"stars_count": 1258,
"forks_count": 164,
"open_issues_count": 13,
"updated_at": "2025-07-01T14:06:12Z",
"updated_at": "2025-07-04T21:12:26Z",
"created_at": "2023-04-21T14:20:14Z",
"clone_url": "https://github.com/lyqht/mini-qr.git",
"ssh_url": "git@github.com:lyqht/mini-qr.git",

View File

@ -4,13 +4,13 @@
"description": "Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.",
"html_url": "https://github.com/n8n-io/n8n",
"language": "TypeScript",
"stars_count": 114419,
"forks_count": 33630,
"stars_count": 114980,
"forks_count": 33907,
"open_issues_count": 1074,
"updated_at": "2025-07-03T05:21:36Z",
"updated_at": "2025-07-04T21:26:25Z",
"created_at": "2019-06-22T09:24:21Z",
"clone_url": "https://github.com/n8n-io/n8n.git",
"ssh_url": "git@github.com:n8n-io/n8n.git",
"default_branch": "master",
"last_build_update": "2025-07-03T04:31:44Z"
"last_build_update": "2025-07-04T18:53:03Z"
}

View File

@ -4,13 +4,13 @@
"description": "\ud83d\udd25 \ud83d\udd25 \ud83d\udd25 Open Source Airtable Alternative",
"html_url": "https://github.com/nocodb/nocodb",
"language": "TypeScript",
"stars_count": 55514,
"forks_count": 3994,
"stars_count": 55535,
"forks_count": 3997,
"open_issues_count": 718,
"updated_at": "2025-07-03T04:26:22Z",
"updated_at": "2025-07-04T20:56:30Z",
"created_at": "2017-10-29T18:51:48Z",
"clone_url": "https://github.com/nocodb/nocodb.git",
"ssh_url": "git@github.com:nocodb/nocodb.git",
"default_branch": "develop",
"last_build_update": "2025-07-03T04:39:20Z"
"last_build_update": "2025-07-04T18:37:18Z"
}

View File

@ -4,13 +4,13 @@
"description": "Get up and running with Llama 3.3, DeepSeek-R1, Phi-4, Gemma 3, Mistral Small 3.1 and other large language models.",
"html_url": "https://github.com/ollama/ollama",
"language": "Go",
"stars_count": 145379,
"forks_count": 12279,
"open_issues_count": 1903,
"updated_at": "2025-07-03T05:22:04Z",
"stars_count": 145579,
"forks_count": 12297,
"open_issues_count": 1881,
"updated_at": "2025-07-04T20:55:45Z",
"created_at": "2023-06-26T19:39:32Z",
"clone_url": "https://github.com/ollama/ollama.git",
"ssh_url": "git@github.com:ollama/ollama.git",
"default_branch": "main",
"last_build_update": "2025-07-02T23:38:37Z"
"last_build_update": "2025-07-04T05:42:44Z"
}

View File

@ -4,10 +4,10 @@
"description": "Documentation that simply works",
"html_url": "https://github.com/squidfunk/mkdocs-material",
"language": "Python",
"stars_count": 23786,
"forks_count": 3787,
"open_issues_count": 5,
"updated_at": "2025-07-03T00:57:11Z",
"stars_count": 23801,
"forks_count": 3792,
"open_issues_count": 6,
"updated_at": "2025-07-04T20:37:34Z",
"created_at": "2016-01-28T22:09:23Z",
"clone_url": "https://github.com/squidfunk/mkdocs-material.git",
"ssh_url": "git@github.com:squidfunk/mkdocs-material.git",

View File

@ -6,6 +6,6 @@
{% endblock %}
{% block announce %}
<a href="https://homepage.bnkserve.org" class="login-button">Login</a>
<a href="https://homepage.cmlite.org" class="login-button">Login</a>
Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
{% endblock %}

View File

@ -1,6 +1,6 @@
site_name: Changemaker Lite
site_description: Build Power. Not Rent It. Own your digital infrastructure.
site_url: https://bnkserve.org
site_url: https://cmlite.org
site_author: Bunker Operations
docs_dir: docs
site_dir: site

View File

@ -0,0 +1,183 @@
site_name: Changemaker Lite
site_description: Build Power. Not Rent It. Own your digital infrastructure.
site_url: https://bnkserve.org
site_author: Bunker Operations
docs_dir: docs
site_dir: site
# Repository
repo_url: https://gitea.bnkops.com/admin/changemaker.lite
repo_name: changemaker.lite
edit_uri: ""
# Theme
theme:
name: material
custom_dir: docs/overrides
logo: assets/logo.png # Commented out until logo exists
favicon: assets/favicon.png # Commented out until favicon exists
palette:
- scheme: slate
primary: deep purple
accent: amber
toggle:
icon: material/weather-night
name: Switch to light mode
- scheme: default
primary: deep purple
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to dark mode
font:
text: Inter
code: JetBrains Mono
features:
- announce.dismiss
- content.action.edit
- content.action.view
- content.code.annotate
- content.code.copy
- content.tooltips
- navigation.expand
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.prefetch
- navigation.instant.progress
- navigation.path
- navigation.prune
- navigation.sections
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
# Plugins
plugins:
- search:
separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
- social:
cards_layout_options:
background_color: "#5BCEFA"
color: "#FFFFFF"
- blog:
blog_dir: blog
post_date_format: medium
archive_name: Archive
categories_name: Categories
- tags
# Extra CSS and JS
extra_css:
- stylesheets/extra.css
- stylesheets/home.css
extra_javascript:
- javascripts/home.js
- javascripts/github-widget.js
- javascripts/gitea-widget.js
hooks:
- docs/hooks/repo_widget_hook.py
# Markdown Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- toc:
permalink: true
title: On this page
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
combine_header_slug: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Extra configuration
extra:
generator: false
social:
- icon: fontawesome/brands/github
link: https://gitea.bnkops.com/admin
name: Gitea Repository
- icon: fontawesome/solid/paper-plane
link: https://listmonk.bnkops.com/subscription/form
name: Newsletter
# Copyright
copyright: >
Copyright &copy; 2024 The Bunker Operations
<a href="#__consent">Change cookie settings</a>
# Navigation - Updated to match existing files
nav:
- Home: index.md
- Philosophy:
- phil/index.md
- Who Reads Your Secrets: https://docs.bnkops.com/archive/repo.archive/thatreallyblondehuman/Thoughts%20%F0%9F%A4%94/If%20you%20do%20politics%20who%20is%20reading%20your%20secrets%20-%20why%20you%20should%20de-corp%20your%20software%20stack/
- How To Not Get Got Making Content: https://docs.bnkops.com/archive/repo.archive/thatreallyblondehuman/Thoughts%20%F0%9F%A4%94/How%20not%20to%20get%20got%20making%20content%20v2/
- Digital Organizing: https://docs.bnkops.com/archive/repo.archive/thatreallyblondehuman/Thoughts%20%F0%9F%A4%94/Distributed%20Digital%20Organizing%20is%20The%20Way%20Out/
- What is Security Culture: https://docs.bnkops.com/archive/repo.archive/Zines%20We%20Like%20%F0%9F%98%8E/What%20Is%20Security%20Culture%20%E2%98%A0/#what-is-security-culture
- Cost Comparison: phil/cost-comparison.md
- Getting Started:
- build/index.md
- Build Server: build/server.md
- Build Map: build/map.md
- Build Site: build/site.md
- Services:
- services/index.md
- Homepage: services/homepage.md
- Code Server: services/code-server.md
- MKDocs: services/mkdocs.md
- Static Server: services/static-server.md
- Listmonk: services/listmonk.md
- PostgreSQL: services/postgresql.md
- n8n: services/n8n.md
- NocoDB: services/nocodb.md
- Gitea: services/gitea.md
- Map Viewer: services/map.md
- Mini QR: services/mini-qr.md
- Configuration:
- config/index.md
- Cloudflare: config/cloudflare-config.md
- MKdocs: config/mkdocs.md
- Code Server: config/coder.md
- Advanced Configuration:
- adv/index.md
- SSH + Tailscale + Ansible: adv/ansible.md
- SSH + VScode: adv/vscode-ssh.md
- Blog:
- blog/index.md

View File

@ -2472,29 +2472,39 @@ Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
</span></code></pre></div>
<h2 id="part-1-install-and-configure-remote-ssh-extension">Part 1: Install and Configure Remote-SSH Extension<a class="headerlink" href="#part-1-install-and-configure-remote-ssh-extension" title="Permanent link">&para;</a></h2>
<h3 id="1-install-the-remote-development-extensions">1. Install the Remote Development Extensions<a class="headerlink" href="#1-install-the-remote-development-extensions" title="Permanent link">&para;</a></h3>
<p><strong>Option A: Install Remote Development Pack (Recommended)</strong>
1. Open VSCode
2. Press <strong>Ctrl+Shift+X</strong> (or <strong>Cmd+Shift+X</strong> on Mac)
3. Search for <strong>"Remote Development"</strong>
4. Install the <strong>Remote Development extension pack</strong> by Microsoft</p>
<p>This pack includes:
- Remote - SSH
- Remote - SSH: Editing Configuration Files
- Remote - Containers
- Remote - WSL (Windows only)</p>
<p><strong>Option B: Install Individual Extension</strong>
1. Search for <strong>"Remote - SSH"</strong>
2. Install <strong>Remote - SSH</strong> by Microsoft</p>
<p><strong>Option A: Install Remote Development Pack (Recommended)</strong></p>
<ol>
<li>Open VSCode</li>
<li>Press <strong>Ctrl+Shift+X</strong> (or <strong>Cmd+Shift+X</strong> on Mac)</li>
<li>Search for <strong>"Remote Development"</strong></li>
<li>Install the <strong>Remote Development extension pack</strong> by Microsoft</li>
</ol>
<p>This pack includes:</p>
<ul>
<li>Remote - SSH</li>
<li>Remote - SSH: Editing Configuration Files</li>
<li>Remote - Containers</li>
<li>Remote - WSL (Windows only)</li>
</ul>
<p><strong>Option B: Install Individual Extension</strong></p>
<ol>
<li>Search for <strong>"Remote - SSH"</strong></li>
<li>Install <strong>Remote - SSH</strong> by Microsoft</li>
</ol>
<h3 id="2-verify-installation">2. Verify Installation<a class="headerlink" href="#2-verify-installation" title="Permanent link">&para;</a></h3>
<p>After installation, the following should be visible:
- Remote Explorer icon in the Activity Bar (left sidebar)
- "Remote-SSH" commands in Command Palette (Ctrl+Shift+P)</p>
<p>After installation, the following should be visible:</p>
<ul>
<li>Remote Explorer icon in the Activity Bar (left sidebar)</li>
<li>"Remote-SSH" commands in Command Palette (Ctrl+Shift+P)</li>
</ul>
<h2 id="part-2-configure-ssh-connections">Part 2: Configure SSH Connections<a class="headerlink" href="#part-2-configure-ssh-connections" title="Permanent link">&para;</a></h2>
<h3 id="1-access-ssh-configuration">1. Access SSH Configuration<a class="headerlink" href="#1-access-ssh-configuration" title="Permanent link">&para;</a></h3>
<p><strong>Method A: Through VSCode</strong>
1. Press <strong>Ctrl+Shift+P</strong> to open Command Palette
2. Type <strong>"Remote-SSH: Open SSH Configuration File..."</strong>
3. Select the SSH config file (usually the first option)</p>
<p><strong>Method A: Through VSCode</strong></p>
<ol>
<li>Press <strong>Ctrl+Shift+P</strong> to open Command Palette</li>
<li>Type <strong>"Remote-SSH: Open SSH Configuration File..."</strong></li>
<li>Select the SSH config file (usually the first option)</li>
</ol>
<p><strong>Method B: Direct File Editing</strong>
<div class="language-bash highlight"><pre><span></span><code><span id="__span-1-1"><a id="__codelineno-1-1" name="__codelineno-1-1" href="#__codelineno-1-1"></a><span class="c1"># Edit SSH config file directly</span>
</span><span id="__span-1-2"><a id="__codelineno-1-2" name="__codelineno-1-2" href="#__codelineno-1-2"></a>nano<span class="w"> </span>~/.ssh/config
@ -2519,14 +2529,16 @@ Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
</span><span id="__span-2-16"><a id="__codelineno-2-16" name="__codelineno-2-16" href="#__codelineno-2-16"></a> ServerAliveInterval 60
</span><span id="__span-2-17"><a id="__codelineno-2-17" name="__codelineno-2-17" href="#__codelineno-2-17"></a> ServerAliveCountMax 3
</span></code></pre></div>
<p><strong>Configuration Options Explained:</strong>
- <code>Host</code>: Friendly name for the connection
- <code>HostName</code>: Tailscale IP address
- <code>User</code>: Username on the remote server
- <code>IdentityFile</code>: Path to the SSH private key
- <code>ForwardAgent</code>: Enables SSH agent forwarding for Git operations
- <code>ServerAliveInterval</code>: Keeps connection alive (prevents timeouts)
- <code>ServerAliveCountMax</code>: Number of keepalive attempts</p>
<p><strong>Configuration Options Explained:</strong></p>
<ul>
<li><code>Host</code>: Friendly name for the connection</li>
<li><code>HostName</code>: Tailscale IP address</li>
<li><code>User</code>: Username on the remote server</li>
<li><code>IdentityFile</code>: Path to the SSH private key</li>
<li><code>ForwardAgent</code>: Enables SSH agent forwarding for Git operations</li>
<li><code>ServerAliveInterval</code>: Keeps connection alive (prevents timeouts)</li>
<li><code>ServerAliveCountMax</code>: Number of keepalive attempts</li>
</ul>
<h3 id="3-set-proper-ssh-key-permissions">3. Set Proper SSH Key Permissions<a class="headerlink" href="#3-set-proper-ssh-key-permissions" title="Permanent link">&para;</a></h3>
<div class="language-bash highlight"><pre><span></span><code><span id="__span-3-1"><a id="__codelineno-3-1" name="__codelineno-3-1" href="#__codelineno-3-1"></a><span class="c1"># Ensure SSH config has correct permissions</span>
</span><span id="__span-3-2"><a id="__codelineno-3-2" name="__codelineno-3-2" href="#__codelineno-3-2"></a>chmod<span class="w"> </span><span class="m">600</span><span class="w"> </span>~/.ssh/config
@ -2556,10 +2568,12 @@ Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
<li>Choose the server from the list</li>
</ol>
<h3 id="4-first-connection-process">4. First Connection Process<a class="headerlink" href="#4-first-connection-process" title="Permanent link">&para;</a></h3>
<p>On first connection, VSCode will:
1. <strong>Verify the host key</strong> (click "Continue" if prompted)
2. <strong>Install VSCode Server</strong> on the remote machine (automatic)
3. <strong>Open a remote window</strong> with access to the remote file system</p>
<p>On first connection, VSCode will:</p>
<ol>
<li><strong>Verify the host key</strong> (click "Continue" if prompted)</li>
<li><strong>Install VSCode Server</strong> on the remote machine (automatic)</li>
<li><strong>Open a remote window</strong> with access to the remote file system</li>
</ol>
<p><strong>Expected Timeline:</strong>
- First connection: 1-3 minutes (installs VSCode Server)
- Subsequent connections: 10-30 seconds</p>
@ -2578,17 +2592,21 @@ Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
</span></code></pre></div>
<h3 id="2-install-extensions-on-remote-server">2. Install Extensions on Remote Server<a class="headerlink" href="#2-install-extensions-on-remote-server" title="Permanent link">&para;</a></h3>
<p>Extensions must be installed separately on the remote server:</p>
<p><strong>Essential Development Extensions:</strong>
1. <strong>Python</strong> (Microsoft) - Python development
2. <strong>GitLens</strong> (GitKraken) - Enhanced Git capabilities
3. <strong>Docker</strong> (Microsoft) - Container development
4. <strong>Prettier</strong> - Code formatting
5. <strong>ESLint</strong> - JavaScript linting
6. <strong>Auto Rename Tag</strong> - HTML/XML tag editing</p>
<p><strong>To Install:</strong>
1. Go to Extensions (Ctrl+Shift+X)
2. Find the desired extension
3. Click <strong>"Install in SSH: node1"</strong> (not local install)</p>
<p><strong>Essential Development Extensions:</strong></p>
<ol>
<li><strong>Python</strong> (Microsoft) - Python development</li>
<li><strong>GitLens</strong> (GitKraken) - Enhanced Git capabilities</li>
<li><strong>Docker</strong> (Microsoft) - Container development</li>
<li><strong>Prettier</strong> - Code formatting</li>
<li><strong>ESLint</strong> - JavaScript linting</li>
<li><strong>Auto Rename Tag</strong> - HTML/XML tag editing</li>
</ol>
<p><strong>To Install:</strong></p>
<ol>
<li>Go to Extensions (Ctrl+Shift+X)</li>
<li>Find the desired extension</li>
<li>Click <strong>"Install in SSH: node1"</strong> (not local install)</li>
</ol>
<h3 id="3-configure-git-on-remote-server">3. Configure Git on Remote Server<a class="headerlink" href="#3-configure-git-on-remote-server" title="Permanent link">&para;</a></h3>
<div class="language-bash highlight"><pre><span></span><code><span id="__span-5-1"><a id="__codelineno-5-1" name="__codelineno-5-1" href="#__codelineno-5-1"></a><span class="c1"># In VSCode terminal (remote)</span>
</span><span id="__span-5-2"><a id="__codelineno-5-2" name="__codelineno-5-2" href="#__codelineno-5-2"></a>git<span class="w"> </span>config<span class="w"> </span>--global<span class="w"> </span>user.name<span class="w"> </span><span class="s2">&quot;&lt;Full Name&gt;&quot;</span>
@ -2599,10 +2617,12 @@ Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
</span></code></pre></div>
<h2 id="part-5-remote-development-workflows">Part 5: Remote Development Workflows<a class="headerlink" href="#part-5-remote-development-workflows" title="Permanent link">&para;</a></h2>
<h3 id="1-file-management">1. File Management<a class="headerlink" href="#1-file-management" title="Permanent link">&para;</a></h3>
<p><strong>File Explorer:</strong>
- Shows remote server's file system
- Create, edit, delete files directly
- Drag and drop between local and remote (limited)</p>
<p><strong>File Explorer:</strong></p>
<ul>
<li>Shows remote server's file system</li>
<li>Create, edit, delete files directly</li>
<li>Drag and drop between local and remote (limited)</li>
</ul>
<p><strong>File Transfer:</strong>
<div class="language-bash highlight"><pre><span></span><code><span id="__span-6-1"><a id="__codelineno-6-1" name="__codelineno-6-1" href="#__codelineno-6-1"></a><span class="c1"># Upload files to remote (from local terminal)</span>
</span><span id="__span-6-2"><a id="__codelineno-6-2" name="__codelineno-6-2" href="#__codelineno-6-2"></a>scp<span class="w"> </span>localfile.txt<span class="w"> </span>&lt;username&gt;@&lt;tailscale-ip&gt;:/home/&lt;username&gt;/
@ -2611,11 +2631,13 @@ Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
</span><span id="__span-6-5"><a id="__codelineno-6-5" name="__codelineno-6-5" href="#__codelineno-6-5"></a>scp<span class="w"> </span>&lt;username&gt;@&lt;tailscale-ip&gt;:/remote/path/file.txt<span class="w"> </span>./local/path/
</span></code></pre></div></p>
<h3 id="2-terminal-usage">2. Terminal Usage<a class="headerlink" href="#2-terminal-usage" title="Permanent link">&para;</a></h3>
<p><strong>Integrated Terminal:</strong>
- Press <strong>Ctrl+`</strong> to open terminal
- Runs directly on remote server
- Multiple terminals supported
- Full shell access (bash, zsh, etc.)</p>
<p><strong>Integrated Terminal:</strong></p>
<ul>
<li>Press <strong>Ctrl+`</strong> to open terminal</li>
<li>Runs directly on remote server</li>
<li>Multiple terminals supported</li>
<li>Full shell access (bash, zsh, etc.)</li>
</ul>
<p><strong>Common Remote Terminal Commands:</strong>
<div class="language-bash highlight"><pre><span></span><code><span id="__span-7-1"><a id="__codelineno-7-1" name="__codelineno-7-1" href="#__codelineno-7-1"></a><span class="c1"># Check system resources</span>
</span><span id="__span-7-2"><a id="__codelineno-7-2" name="__codelineno-7-2" href="#__codelineno-7-2"></a>htop
@ -2633,11 +2655,13 @@ Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
<h3 id="3-port-forwarding">3. Port Forwarding<a class="headerlink" href="#3-port-forwarding" title="Permanent link">&para;</a></h3>
<p><strong>Automatic Port Forwarding:</strong>
VSCode automatically detects and forwards common development ports.</p>
<p><strong>Manual Port Forwarding:</strong>
1. Open <strong>Ports</strong> tab in terminal panel
2. Click <strong>"Forward a Port"</strong>
3. Enter port number (e.g., 3000, 8080, 5000)
4. Access via <code>http://localhost:port</code> on the local machine</p>
<p><strong>Manual Port Forwarding:</strong></p>
<ol>
<li>Open <strong>Ports</strong> tab in terminal panel</li>
<li>Click <strong>"Forward a Port"</strong></li>
<li>Enter port number (e.g., 3000, 8080, 5000)</li>
<li>Access via <code>http://localhost:port</code> on the local machine</li>
</ol>
<p><strong>Example: Web Development</strong>
<div class="language-bash highlight"><pre><span></span><code><span id="__span-8-1"><a id="__codelineno-8-1" name="__codelineno-8-1" href="#__codelineno-8-1"></a><span class="c1"># Start a web server on remote (port 3000)</span>
</span><span id="__span-8-2"><a id="__codelineno-8-2" name="__codelineno-8-2" href="#__codelineno-8-2"></a>npm<span class="w"> </span>start
@ -2690,20 +2714,26 @@ VSCode automatically detects and forwards common development ports.</p>
</span><span id="__span-11-10"><a id="__codelineno-11-10" name="__codelineno-11-10" href="#__codelineno-11-10"></a><span class="p">}</span>
</span></code></pre></div>
<h3 id="2-multi-server-management">2. Multi-Server Management<a class="headerlink" href="#2-multi-server-management" title="Permanent link">&para;</a></h3>
<p><strong>Switch Between Servers:</strong>
1. Click remote indicator (bottom-left)
2. Select <strong>"Connect to Host..."</strong>
3. Choose a different server</p>
<p><strong>Compare Files Across Servers:</strong>
1. Open file from server A
2. Connect to server B in new window
3. Open corresponding file
4. Use <strong>"Compare with..."</strong> command</p>
<p><strong>Switch Between Servers:</strong></p>
<ol>
<li>Click remote indicator (bottom-left)</li>
<li>Select <strong>"Connect to Host..."</strong></li>
<li>Choose a different server</li>
</ol>
<p><strong>Compare Files Across Servers:</strong></p>
<ol>
<li>Open file from server A</li>
<li>Connect to server B in new window</li>
<li>Open corresponding file</li>
<li>Use <strong>"Compare with..."</strong> command</li>
</ol>
<h3 id="3-sync-configuration">3. Sync Configuration<a class="headerlink" href="#3-sync-configuration" title="Permanent link">&para;</a></h3>
<p><strong>Settings Sync:</strong>
1. Enable Settings Sync in VSCode
2. Settings, extensions, and keybindings sync to remote
3. Consistent experience across all servers</p>
<p><strong>Settings Sync:</strong></p>
<ol>
<li>Enable Settings Sync in VSCode</li>
<li>Settings, extensions, and keybindings sync to remote</li>
<li>Consistent experience across all servers</li>
</ol>
<h2 id="part-7-project-specific-setups">Part 7: Project-Specific Setups<a class="headerlink" href="#part-7-project-specific-setups" title="Permanent link">&para;</a></h2>
<h3 id="1-python-development">1. Python Development<a class="headerlink" href="#1-python-development" title="Permanent link">&para;</a></h3>
<div class="language-bash highlight"><pre><span></span><code><span id="__span-12-1"><a id="__codelineno-12-1" name="__codelineno-12-1" href="#__codelineno-12-1"></a><span class="c1"># On remote server</span>
@ -2752,10 +2782,12 @@ VSCode automatically detects and forwards common development ports.</p>
</span><span id="__span-15-14"><a id="__codelineno-15-14" name="__codelineno-15-14" href="#__codelineno-15-14"></a><span class="s">CMD [&quot;npm&quot;, &quot;start&quot;]</span>
</span><span id="__span-15-15"><a id="__codelineno-15-15" name="__codelineno-15-15" href="#__codelineno-15-15"></a><span class="s">EOF</span>
</span></code></pre></div>
<p><strong>VSCode Docker Integration:</strong>
- Install Docker extension on remote
- Right-click Dockerfile → "Build Image"
- Manage containers from VSCode interface</p>
<p><strong>VSCode Docker Integration:</strong></p>
<ul>
<li>Install Docker extension on remote</li>
<li>Right-click Dockerfile → "Build Image"</li>
<li>Manage containers from VSCode interface</li>
</ul>
<h2 id="part-8-troubleshooting-guide">Part 8: Troubleshooting Guide<a class="headerlink" href="#part-8-troubleshooting-guide" title="Permanent link">&para;</a></h2>
<h3 id="common-connection-issues">Common Connection Issues<a class="headerlink" href="#common-connection-issues" title="Permanent link">&para;</a></h3>
<p><strong>Problem: "Could not establish connection to remote host"</strong></p>
@ -2794,10 +2826,12 @@ VSCode automatically detects and forwards common development ports.</p>
</span></code></pre></div></p>
<h3 id="vscode-specific-issues">VSCode-Specific Issues<a class="headerlink" href="#vscode-specific-issues" title="Permanent link">&para;</a></h3>
<p><strong>Problem: Extensions not working on remote</strong></p>
<p><strong>Solutions:</strong>
1. Install extensions specifically for the remote server
2. Check extension compatibility with remote development
3. Reload VSCode window: Ctrl+Shift+P → "Developer: Reload Window"</p>
<p><strong>Solutions:</strong></p>
<ol>
<li>Install extensions specifically for the remote server</li>
<li>Check extension compatibility with remote development</li>
<li>Reload VSCode window: Ctrl+Shift+P → "Developer: Reload Window"</li>
</ol>
<p><strong>Problem: Slow performance</strong></p>
<p><strong>Solutions:</strong>
- Use <code>.vscode/settings.json</code> to exclude large directories:

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -7,10 +7,10 @@
"stars_count": 0,
"forks_count": 0,
"open_issues_count": 0,
"updated_at": "2025-07-02T11:49:44-06:00",
"updated_at": "2025-07-04T14:31:11-06:00",
"created_at": "2025-05-28T14:54:59-06:00",
"clone_url": "https://gitea.bnkops.com/admin/changemaker.lite.git",
"ssh_url": "git@gitea.bnkops.com:admin/changemaker.lite.git",
"default_branch": "main",
"last_build_update": "2025-07-02T11:49:44-06:00"
"last_build_update": "2025-07-04T14:31:11-06:00"
}

View File

@ -4,13 +4,13 @@
"description": "Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.",
"html_url": "https://github.com/anthropics/claude-code",
"language": "PowerShell",
"stars_count": 17031,
"forks_count": 941,
"open_issues_count": 1508,
"updated_at": "2025-07-03T05:19:19Z",
"stars_count": 17373,
"forks_count": 959,
"open_issues_count": 1578,
"updated_at": "2025-07-04T21:17:51Z",
"created_at": "2025-02-22T17:41:21Z",
"clone_url": "https://github.com/anthropics/claude-code.git",
"ssh_url": "git@github.com:anthropics/claude-code.git",
"default_branch": "main",
"last_build_update": "2025-07-03T03:54:14Z"
"last_build_update": "2025-07-03T21:09:58Z"
}

View File

@ -4,10 +4,10 @@
"description": "VS Code in the browser",
"html_url": "https://github.com/coder/code-server",
"language": "TypeScript",
"stars_count": 72541,
"forks_count": 6067,
"open_issues_count": 141,
"updated_at": "2025-07-03T05:17:24Z",
"stars_count": 72668,
"forks_count": 6074,
"open_issues_count": 143,
"updated_at": "2025-07-04T18:33:06Z",
"created_at": "2019-02-27T16:50:41Z",
"clone_url": "https://github.com/coder/code-server.git",
"ssh_url": "git@github.com:coder/code-server.git",

View File

@ -4,13 +4,13 @@
"description": "A highly customizable homepage (or startpage / application dashboard) with Docker and service API integrations.",
"html_url": "https://github.com/gethomepage/homepage",
"language": "JavaScript",
"stars_count": 24619,
"forks_count": 1520,
"open_issues_count": 1,
"updated_at": "2025-07-03T03:29:15Z",
"stars_count": 24643,
"forks_count": 1522,
"open_issues_count": 2,
"updated_at": "2025-07-04T19:49:50Z",
"created_at": "2022-08-24T07:29:42Z",
"clone_url": "https://github.com/gethomepage/homepage.git",
"ssh_url": "git@github.com:gethomepage/homepage.git",
"default_branch": "dev",
"last_build_update": "2025-07-03T00:36:38Z"
"last_build_update": "2025-07-04T12:13:48Z"
}

View File

@ -4,13 +4,13 @@
"description": "Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD",
"html_url": "https://github.com/go-gitea/gitea",
"language": "Go",
"stars_count": 49349,
"forks_count": 5892,
"open_issues_count": 2702,
"updated_at": "2025-07-03T03:52:23Z",
"stars_count": 49370,
"forks_count": 5897,
"open_issues_count": 2711,
"updated_at": "2025-07-04T20:42:00Z",
"created_at": "2016-11-01T02:13:26Z",
"clone_url": "https://github.com/go-gitea/gitea.git",
"ssh_url": "git@github.com:go-gitea/gitea.git",
"default_branch": "main",
"last_build_update": "2025-07-03T03:02:38Z"
"last_build_update": "2025-07-04T15:41:19Z"
}

View File

@ -4,10 +4,10 @@
"description": "High performance, self-hosted, newsletter and mailing list manager with a modern dashboard. Single binary app.",
"html_url": "https://github.com/knadh/listmonk",
"language": "Go",
"stars_count": 17250,
"forks_count": 1658,
"open_issues_count": 101,
"updated_at": "2025-07-03T01:26:41Z",
"stars_count": 17261,
"forks_count": 1659,
"open_issues_count": 103,
"updated_at": "2025-07-04T18:22:09Z",
"created_at": "2019-06-26T05:08:39Z",
"clone_url": "https://github.com/knadh/listmonk.git",
"ssh_url": "git@github.com:knadh/listmonk.git",

View File

@ -4,10 +4,10 @@
"description": "Create & scan cute qr codes easily \ud83d\udc7e",
"html_url": "https://github.com/lyqht/mini-qr",
"language": "Vue",
"stars_count": 1254,
"stars_count": 1258,
"forks_count": 164,
"open_issues_count": 13,
"updated_at": "2025-07-01T14:06:12Z",
"updated_at": "2025-07-04T21:12:26Z",
"created_at": "2023-04-21T14:20:14Z",
"clone_url": "https://github.com/lyqht/mini-qr.git",
"ssh_url": "git@github.com:lyqht/mini-qr.git",

View File

@ -4,13 +4,13 @@
"description": "Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.",
"html_url": "https://github.com/n8n-io/n8n",
"language": "TypeScript",
"stars_count": 114419,
"forks_count": 33630,
"stars_count": 114980,
"forks_count": 33907,
"open_issues_count": 1074,
"updated_at": "2025-07-03T05:21:36Z",
"updated_at": "2025-07-04T21:26:25Z",
"created_at": "2019-06-22T09:24:21Z",
"clone_url": "https://github.com/n8n-io/n8n.git",
"ssh_url": "git@github.com:n8n-io/n8n.git",
"default_branch": "master",
"last_build_update": "2025-07-03T04:31:44Z"
"last_build_update": "2025-07-04T18:53:03Z"
}

View File

@ -4,13 +4,13 @@
"description": "\ud83d\udd25 \ud83d\udd25 \ud83d\udd25 Open Source Airtable Alternative",
"html_url": "https://github.com/nocodb/nocodb",
"language": "TypeScript",
"stars_count": 55514,
"forks_count": 3994,
"stars_count": 55535,
"forks_count": 3997,
"open_issues_count": 718,
"updated_at": "2025-07-03T04:26:22Z",
"updated_at": "2025-07-04T20:56:30Z",
"created_at": "2017-10-29T18:51:48Z",
"clone_url": "https://github.com/nocodb/nocodb.git",
"ssh_url": "git@github.com:nocodb/nocodb.git",
"default_branch": "develop",
"last_build_update": "2025-07-03T04:39:20Z"
"last_build_update": "2025-07-04T18:37:18Z"
}

View File

@ -4,13 +4,13 @@
"description": "Get up and running with Llama 3.3, DeepSeek-R1, Phi-4, Gemma 3, Mistral Small 3.1 and other large language models.",
"html_url": "https://github.com/ollama/ollama",
"language": "Go",
"stars_count": 145379,
"forks_count": 12279,
"open_issues_count": 1903,
"updated_at": "2025-07-03T05:22:04Z",
"stars_count": 145579,
"forks_count": 12297,
"open_issues_count": 1881,
"updated_at": "2025-07-04T20:55:45Z",
"created_at": "2023-06-26T19:39:32Z",
"clone_url": "https://github.com/ollama/ollama.git",
"ssh_url": "git@github.com:ollama/ollama.git",
"default_branch": "main",
"last_build_update": "2025-07-02T23:38:37Z"
"last_build_update": "2025-07-04T05:42:44Z"
}

View File

@ -4,10 +4,10 @@
"description": "Documentation that simply works",
"html_url": "https://github.com/squidfunk/mkdocs-material",
"language": "Python",
"stars_count": 23786,
"forks_count": 3787,
"open_issues_count": 5,
"updated_at": "2025-07-03T00:57:11Z",
"stars_count": 23801,
"forks_count": 3792,
"open_issues_count": 6,
"updated_at": "2025-07-04T20:37:34Z",
"created_at": "2016-01-28T22:09:23Z",
"clone_url": "https://github.com/squidfunk/mkdocs-material.git",
"ssh_url": "git@github.com:squidfunk/mkdocs-material.git",

View File

@ -1366,6 +1366,15 @@ Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
</span>
</a>
</li>
<li class="md-nav__item">
<a href="#optional-site-builld" class="md-nav__link">
<span class="md-ellipsis">
Optional - Site Builld
</span>
</a>
</li>
<li class="md-nav__item">
@ -1827,6 +1836,8 @@ Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
<div class="language-text highlight"><pre><span></span><code><span id="__span-2-1"><a id="__codelineno-2-1" name="__codelineno-2-1" href="#__codelineno-2-1"></a># Start all services
</span><span id="__span-2-2"><a id="__codelineno-2-2" name="__codelineno-2-2" href="#__codelineno-2-2"></a>docker compose up -d
</span></code></pre></div>
<h3 id="optional-site-builld">Optional - Site Builld<a class="headerlink" href="#optional-site-builld" title="Permanent link">&para;</a></h3>
<p>If you want to have your site prepared for launch, you can now proceed with reseting the site build. See <a href="site/">Build Site</a> for more detials. </p>
<h3 id="deploy">Deploy<a class="headerlink" href="#deploy" title="Permanent link">&para;</a></h3>
<div class="admonition note">
<p class="admonition-title">Cloudflare</p>

View File

@ -779,7 +779,7 @@ Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
<li class="md-nav__item">
<a href="#the-question-that-changes-everything" class="md-nav__link">
<span class="md-ellipsis">
The Question That Changes Everything
The Question That Changes Everything!
</span>
</a>
@ -1171,7 +1171,7 @@ Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
<h1 id="philosophy-your-secrets-your-power-your-movement">Philosophy: Your Secrets, Your Power, Your Movement<a class="headerlink" href="#philosophy-your-secrets-your-power-your-movement" title="Permanent link">&para;</a></h1>
<h2 id="the-question-that-changes-everything">The Question That Changes Everything<a class="headerlink" href="#the-question-that-changes-everything" title="Permanent link">&para;</a></h2>
<h2 id="the-question-that-changes-everything">The Question That Changes Everything!<a class="headerlink" href="#the-question-that-changes-everything" title="Permanent link">&para;</a></h2>
<p><strong>If you are a political actor, who do you trust with your secrets?</strong></p>
<p>This isn't just a technical question—it's the core political question of our time. Every email you send, every document you create, every contact list you build, every strategy you develop: where does it live? Who owns the servers? Who has the keys?</p>
<h2 id="the-corporate-extraction-machine">The Corporate Extraction Machine<a class="headerlink" href="#the-corporate-extraction-machine" title="Permanent link">&para;</a></h2>

File diff suppressed because one or more lines are too long

View File

@ -2,118 +2,122 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://cmlite.org/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/test/</loc>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/adv/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/adv/ansible/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/adv/vscode-ssh/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/blog/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/blog/2025/07/03/blog-1/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/build/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/build/map/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/build/server/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/build/site/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/config/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/config/cloudflare-config/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/config/coder/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/config/mkdocs/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/phil/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/phil/cost-comparison/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/services/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/services/code-server/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/services/gitea/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/services/homepage/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/services/listmonk/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/services/map/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/services/mini-qr/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/services/mkdocs/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/services/n8n/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/services/nocodb/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/services/postgresql/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/services/static-server/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
<url>
<loc>https://cmlite.org/blog/archive/2025/</loc>
<lastmod>2025-07-03</lastmod>
<lastmod>2025-07-04</lastmod>
</url>
</urlset>

Binary file not shown.

744
mkdocs/site/test/index.html Normal file
View File

@ -0,0 +1,744 @@
<!doctype html>
<html lang="en" class="no-js">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="description" content="Build Power. Not Rent It. Own your digital infrastructure.">
<meta name="author" content="Bunker Operations">
<link rel="canonical" href="https://cmlite.org/test/">
<link rel="icon" href="../assets/favicon.png">
<meta name="generator" content="mkdocs-1.6.1, mkdocs-material-9.6.15">
<title>Test - Changemaker Lite</title>
<link rel="stylesheet" href="../assets/stylesheets/main.342714a4.min.css">
<link rel="stylesheet" href="../assets/stylesheets/palette.06af60db.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter:300,300i,400,400i,700,700i%7CJetBrains+Mono:400,400i,700,700i&display=fallback">
<style>:root{--md-text-font:"Inter";--md-code-font:"JetBrains Mono"}</style>
<link rel="stylesheet" href="../stylesheets/extra.css">
<link rel="stylesheet" href="../stylesheets/home.css">
<script>__md_scope=new URL("..",location),__md_hash=e=>[...e].reduce(((e,_)=>(e<<5)-e+_.charCodeAt(0)),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
<meta property="og:type" content="website" >
<meta property="og:title" content="Test - Changemaker Lite" >
<meta property="og:description" content="Build Power. Not Rent It. Own your digital infrastructure." >
<meta property="og:image" content="https://cmlite.org/assets/images/social/test.png" >
<meta property="og:image:type" content="image/png" >
<meta property="og:image:width" content="1200" >
<meta property="og:image:height" content="630" >
<meta property="og:url" content="https://cmlite.org/test/" >
<meta name="twitter:card" content="summary_large_image" >
<meta name="twitter:title" content="Test - Changemaker Lite" >
<meta name="twitter:description" content="Build Power. Not Rent It. Own your digital infrastructure." >
<meta name="twitter:image" content="https://cmlite.org/assets/images/social/test.png" >
<!-- Custom meta tags or head content can go here -->
</head>
<body dir="ltr" data-md-color-scheme="slate" data-md-color-primary="deep-purple" data-md-color-accent="amber">
<input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
<input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
<label class="md-overlay" for="__drawer"></label>
<div data-md-component="skip">
<a href="#test" class="md-skip">
Skip to content
</a>
</div>
<div data-md-component="announce">
<aside class="md-banner">
<div class="md-banner__inner md-grid md-typeset">
<button class="md-banner__button md-icon" aria-label="Don't show this again">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>
</button>
<a href="https://homepage.cmlite.org" class="login-button">Login</a>
Changemaker Archive. <a href="https://docs.bnkops.com">Learn more</a>
</div>
<script>var el=document.querySelector("[data-md-component=announce]");if(el){var content=el.querySelector(".md-typeset");__md_hash(content.innerHTML)===__md_get("__announce")&&(el.hidden=!0)}</script>
</aside>
</div>
<header class="md-header md-header--shadow md-header--lifted" data-md-component="header">
<nav class="md-header__inner md-grid" aria-label="Header">
<a href=".." title="Changemaker Lite" class="md-header__button md-logo" aria-label="Changemaker Lite" data-md-component="logo">
<img src="../assets/logo.png" alt="logo">
</a>
<label class="md-header__button md-icon" for="__drawer">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3zm0 5h18v2H3zm0 5h18v2H3z"/></svg>
</label>
<div class="md-header__title" data-md-component="header-title">
<div class="md-header__ellipsis">
<div class="md-header__topic">
<span class="md-ellipsis">
Changemaker Lite
</span>
</div>
<div class="md-header__topic" data-md-component="header-topic">
<span class="md-ellipsis">
Test
</span>
</div>
</div>
</div>
<form class="md-header__option" data-md-component="palette">
<input class="md-option" data-md-color-media="" data-md-color-scheme="slate" data-md-color-primary="deep-purple" data-md-color-accent="amber" aria-label="Switch to light mode" type="radio" name="__palette" id="__palette_0">
<label class="md-header__button md-icon" title="Switch to light mode" for="__palette_1" hidden>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m17.75 4.09-2.53 1.94.91 3.06-2.63-1.81-2.63 1.81.91-3.06-2.53-1.94L12.44 4l1.06-3 1.06 3zm3.5 6.91-1.64 1.25.59 1.98-1.7-1.17-1.7 1.17.59-1.98L15.75 11l2.06-.05L18.5 9l.69 1.95zm-2.28 4.95c.83-.08 1.72 1.1 1.19 1.85-.32.45-.66.87-1.08 1.27C15.17 23 8.84 23 4.94 19.07c-3.91-3.9-3.91-10.24 0-14.14.4-.4.82-.76 1.27-1.08.75-.53 1.93.36 1.85 1.19-.27 2.86.69 5.83 2.89 8.02a9.96 9.96 0 0 0 8.02 2.89m-1.64 2.02a12.08 12.08 0 0 1-7.8-3.47c-2.17-2.19-3.33-5-3.49-7.82-2.81 3.14-2.7 7.96.31 10.98 3.02 3.01 7.84 3.12 10.98.31"/></svg>
</label>
<input class="md-option" data-md-color-media="" data-md-color-scheme="default" data-md-color-primary="deep-purple" data-md-color-accent="amber" aria-label="Switch to dark mode" type="radio" name="__palette" id="__palette_1">
<label class="md-header__button md-icon" title="Switch to dark mode" for="__palette_0" hidden>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 7a5 5 0 0 1 5 5 5 5 0 0 1-5 5 5 5 0 0 1-5-5 5 5 0 0 1 5-5m0 2a3 3 0 0 0-3 3 3 3 0 0 0 3 3 3 3 0 0 0 3-3 3 3 0 0 0-3-3m0-7 2.39 3.42C13.65 5.15 12.84 5 12 5s-1.65.15-2.39.42zM3.34 7l4.16-.35A7.2 7.2 0 0 0 5.94 8.5c-.44.74-.69 1.5-.83 2.29zm.02 10 1.76-3.77a7.131 7.131 0 0 0 2.38 4.14zM20.65 7l-1.77 3.79a7.02 7.02 0 0 0-2.38-4.15zm-.01 10-4.14.36c.59-.51 1.12-1.14 1.54-1.86.42-.73.69-1.5.83-2.29zM12 22l-2.41-3.44c.74.27 1.55.44 2.41.44.82 0 1.63-.17 2.37-.44z"/></svg>
</label>
</form>
<script>var palette=__md_get("__palette");if(palette&&palette.color){if("(prefers-color-scheme)"===palette.color.media){var media=matchMedia("(prefers-color-scheme: light)"),input=document.querySelector(media.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']");palette.color.media=input.getAttribute("data-md-color-media"),palette.color.scheme=input.getAttribute("data-md-color-scheme"),palette.color.primary=input.getAttribute("data-md-color-primary"),palette.color.accent=input.getAttribute("data-md-color-accent")}for(var[key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)}</script>
<label class="md-header__button md-icon" for="__search">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
</label>
<div class="md-search" data-md-component="search" role="dialog">
<label class="md-search__overlay" for="__search"></label>
<div class="md-search__inner" role="search">
<form class="md-search__form" name="search">
<input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
<label class="md-search__icon md-icon" for="__search">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.52 6.52 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5"/></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11z"/></svg>
</label>
<nav class="md-search__options" aria-label="Search">
<a href="javascript:void(0)" class="md-search__icon md-icon" title="Share" aria-label="Share" data-clipboard data-clipboard-text="" data-md-component="search-share" tabindex="-1">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9a3 3 0 0 0-3 3 3 3 0 0 0 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.15c-.05.21-.08.43-.08.66 0 1.61 1.31 2.91 2.92 2.91s2.92-1.3 2.92-2.91A2.92 2.92 0 0 0 18 16.08"/></svg>
</a>
<button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"/></svg>
</button>
</nav>
<div class="md-search__suggest" data-md-component="search-suggest"></div>
</form>
<div class="md-search__output">
<div class="md-search__scrollwrap" tabindex="0" data-md-scrollfix>
<div class="md-search-result" data-md-component="search-result">
<div class="md-search-result__meta">
Initializing search
</div>
<ol class="md-search-result__list" role="presentation"></ol>
</div>
</div>
</div>
</div>
</div>
<div class="md-header__source">
<a href="https://gitea.bnkops.com/admin/changemaker.lite" title="Go to repository" class="md-source" data-md-component="source">
<div class="md-source__icon md-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
</div>
<div class="md-source__repository">
changemaker.lite
</div>
</a>
</div>
</nav>
<nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
<div class="md-grid">
<ul class="md-tabs__list">
<li class="md-tabs__item">
<a href=".." class="md-tabs__link">
Home
</a>
</li>
<li class="md-tabs__item">
<a href="../phil/" class="md-tabs__link">
Philosophy
</a>
</li>
<li class="md-tabs__item">
<a href="../build/" class="md-tabs__link">
Getting Started
</a>
</li>
<li class="md-tabs__item">
<a href="../blog/" class="md-tabs__link">
Blog
</a>
</li>
</ul>
</div>
</nav>
</header>
<div class="md-container" data-md-component="container">
<main class="md-main" data-md-component="main">
<div class="md-main__inner md-grid">
<div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
<label class="md-nav__title" for="__drawer">
<a href=".." title="Changemaker Lite" class="md-nav__button md-logo" aria-label="Changemaker Lite" data-md-component="logo">
<img src="../assets/logo.png" alt="logo">
</a>
Changemaker Lite
</label>
<div class="md-nav__source">
<a href="https://gitea.bnkops.com/admin/changemaker.lite" title="Go to repository" class="md-source" data-md-component="source">
<div class="md-source__icon md-icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81"/></svg>
</div>
<div class="md-source__repository">
changemaker.lite
</div>
</a>
</div>
<ul class="md-nav__list" data-md-scrollfix>
<li class="md-nav__item">
<a href=".." class="md-nav__link">
<span class="md-ellipsis">
Home
</span>
</a>
</li>
<li class="md-nav__item md-nav__item--pruned md-nav__item--nested">
<a href="../phil/" class="md-nav__link">
<span class="md-ellipsis">
Philosophy
</span>
<span class="md-nav__icon md-icon"></span>
</a>
</li>
<li class="md-nav__item md-nav__item--pruned md-nav__item--nested">
<a href="../build/" class="md-nav__link">
<span class="md-ellipsis">
Getting Started
</span>
<span class="md-nav__icon md-icon"></span>
</a>
</li>
<li class="md-nav__item md-nav__item--pruned md-nav__item--nested">
<a href="../blog/" class="md-nav__link">
<span class="md-ellipsis">
Blog
</span>
<span class="md-nav__icon md-icon"></span>
</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--secondary" aria-label="On this page">
</nav>
</div>
</div>
</div>
<div class="md-content" data-md-component="content">
<article class="md-content__inner md-typeset">
<h1 id="test">Test<a class="headerlink" href="#test" title="Permanent link">&para;</a></h1>
<p>lololol </p>
</article>
</div>
<script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
</div>
<button type="button" class="md-top md-icon" data-md-component="top" hidden>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M13 20h-2V8l-5.5 5.5-1.42-1.42L12 4.16l7.92 7.92-1.42 1.42L13 8z"/></svg>
Back to top
</button>
</main>
<footer class="md-footer">
<div class="md-footer-meta md-typeset">
<div class="md-footer-meta__inner md-grid">
<div class="md-copyright">
<div class="md-copyright__highlight">
Copyright &copy; 2024 The Bunker Operations <a href="#__consent">Change cookie settings</a>
</div>
</div>
<div class="md-social">
<a href="https://gitea.bnkops.com/admin" target="_blank" rel="noopener" title="Gitea Repository" class="md-social__link">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 496 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6m-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3m44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9M244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8M97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1m-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7m32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1m-11.4-14.7c-1.6 1-1.6 3.6 0 5.9s4.3 3.3 5.6 2.3c1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2"/></svg>
</a>
<a href="https://listmonk.bnkops.com/subscription/form" target="_blank" rel="noopener" title="Newsletter" class="md-social__link">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2024 Fonticons, Inc.--><path d="M498.1 5.6c10.1 7 15.4 19.1 13.5 31.2l-64 416c-1.5 9.7-7.4 18.2-16 23s-18.9 5.4-28 1.6L284 427.7l-68.5 74.1c-8.9 9.7-22.9 12.9-35.2 8.1S160 493.2 160 480v-83.6c0-4 1.5-7.8 4.2-10.8l167.6-182.8c5.8-6.3 5.6-16-.4-22s-15.7-6.4-22-.7L106 360.8l-88.3-44.2C7.1 311.3.3 300.7 0 288.9s5.9-22.8 16.1-28.7l448-256c10.7-6.1 23.9-5.5 34 1.4"/></svg>
</a>
</div>
</div>
</div>
</footer>
</div>
<div class="md-dialog" data-md-component="dialog">
<div class="md-dialog__inner md-typeset"></div>
</div>
<div class="md-progress" data-md-component="progress" role="progressbar"></div>
<script id="__config" type="application/json">{"base": "..", "features": ["announce.dismiss", "content.action.edit", "content.action.view", "content.code.annotate", "content.code.copy", "content.tooltips", "navigation.expand", "navigation.footer", "navigation.indexes", "navigation.instant", "navigation.instant.prefetch", "navigation.instant.progress", "navigation.path", "navigation.prune", "navigation.sections", "navigation.tabs", "navigation.tabs.sticky", "navigation.top", "navigation.tracking", "search.highlight", "search.share", "search.suggest", "toc.follow"], "search": "../assets/javascripts/workers/search.d50fe291.min.js", "tags": null, "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": null}</script>
<script src="../assets/javascripts/bundle.56ea9cef.min.js"></script>
<script src="../javascripts/home.js"></script>
<script src="../javascripts/github-widget.js"></script>
<script src="../javascripts/gitea-widget.js"></script>
</body>
</html>