update
This commit is contained in:
parent
d535a987d9
commit
1a2c4f7167
22
.drone.yml
22
.drone.yml
@ -1,22 +0,0 @@
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: build
|
||||
|
||||
steps:
|
||||
- name: build
|
||||
image: squidfunk/mkdocs-material:7.1.9
|
||||
volumes:
|
||||
- name: site
|
||||
path: /site
|
||||
commands:
|
||||
- /usr/local/bin/python -m pip install --upgrade pip
|
||||
- pip install -U -r ./requirements.txt
|
||||
- mkdocs build
|
||||
- cp -r site/ /site
|
||||
- chmod -R 777 /site
|
||||
|
||||
volumes:
|
||||
- name: site
|
||||
host:
|
||||
path: /home/sthope/docker/wiki
|
@ -1,37 +0,0 @@
|
||||
name: Build
|
||||
on:
|
||||
- push
|
||||
- pull_request
|
||||
|
||||
# schedule:
|
||||
# - cron: '0 21 * * 0'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: catthehacker/ubuntu:act-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Python 3.10
|
||||
uses: actions/setup-python@v3
|
||||
with:
|
||||
python-version: "3.10.12"
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install -U -r requirements.txt
|
||||
|
||||
- name: Build and deploy
|
||||
run: |
|
||||
pip install mkdocs-material==7.1.9
|
||||
mkdocs build
|
||||
cp -r site/ $GITHUB_WORKSPACE/site
|
||||
chmod -R 777 $GITHUB_WORKSPACE/site
|
||||
|
||||
- name: Upload built site
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: built-site
|
||||
path: $GITHUB_WORKSPACE/site
|
@ -1,15 +0,0 @@
|
||||
name: lint
|
||||
on:
|
||||
- push
|
||||
- pull_request
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
name: lint
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: install markdownlint-cli
|
||||
run: npm install -g markdownlint-cli
|
||||
- name: lint
|
||||
run: markdownlint '**/*.md'
|
85
.gitignore
vendored
85
.gitignore
vendored
@ -1,85 +0,0 @@
|
||||
# ignore rendered site
|
||||
site/
|
||||
./sthope/
|
||||
# Created by https://www.toptal.com/developers/gitignore/api/vscode,macos,windows,linux
|
||||
# Edit at https://www.toptal.com/developers/gitignore?templates=vscode,macos,windows,linux
|
||||
|
||||
### Linux ###
|
||||
*~
|
||||
|
||||
# temporary files which can be created if a process still has a handle open of a deleted file
|
||||
.fuse_hidden*
|
||||
|
||||
# KDE directory preferences
|
||||
.directory
|
||||
|
||||
# Linux trash folder which might appear on any partition or disk
|
||||
.Trash-*
|
||||
|
||||
# .nfs files are created when an open file is removed but is still being accessed
|
||||
.nfs*
|
||||
|
||||
### macOS ###
|
||||
# General
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# Icon must end with two \r
|
||||
Icon
|
||||
|
||||
|
||||
# Thumbnails
|
||||
._*
|
||||
|
||||
# Files that might appear in the root of a volume
|
||||
.DocumentRevisions-V100
|
||||
.fseventsd
|
||||
.Spotlight-V100
|
||||
.TemporaryItems
|
||||
.Trashes
|
||||
.VolumeIcon.icns
|
||||
.com.apple.timemachine.donotpresent
|
||||
|
||||
# Directories potentially created on remote AFP share
|
||||
.AppleDB
|
||||
.AppleDesktop
|
||||
Network Trash Folder
|
||||
Temporary Items
|
||||
.apdisk
|
||||
|
||||
### vscode ###
|
||||
.vscode/*
|
||||
!.vscode/settings.json
|
||||
!.vscode/tasks.json
|
||||
!.vscode/launch.json
|
||||
!.vscode/extensions.json
|
||||
*.code-workspace
|
||||
|
||||
### Windows ###
|
||||
# Windows thumbnail cache files
|
||||
Thumbs.db
|
||||
Thumbs.db:encryptable
|
||||
ehthumbs.db
|
||||
ehthumbs_vista.db
|
||||
|
||||
# Dump file
|
||||
*.stackdump
|
||||
|
||||
# Folder config file
|
||||
[Dd]esktop.ini
|
||||
|
||||
# Recycle Bin used on file shares
|
||||
$RECYCLE.BIN/
|
||||
|
||||
# Windows Installer files
|
||||
*.cab
|
||||
*.msi
|
||||
*.msix
|
||||
*.msm
|
||||
*.msp
|
||||
|
||||
# Windows shortcuts
|
||||
*.lnk
|
||||
|
||||
# End of https://www.toptal.com/developers/gitignore/api/vscode,macos,windows,linux
|
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
@ -1,5 +0,0 @@
|
||||
{
|
||||
"files.exclude": {
|
||||
"**/.git": false
|
||||
}
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
FROM squidfunk/mkdocs-material:${TAG-latest}
|
||||
|
||||
COPY requirements.txt /docs/requirements.txt
|
||||
RUN pip install -U -r /docs/requirements.txt
|
BIN
backup/new_wiki.tar.xz
Normal file
BIN
backup/new_wiki.tar.xz
Normal file
Binary file not shown.
BIN
backup/old_wiki.tar.xz
Normal file
BIN
backup/old_wiki.tar.xz
Normal file
Binary file not shown.
@ -1,10 +0,0 @@
|
||||
version: "3.9"
|
||||
|
||||
services:
|
||||
wiki:
|
||||
build: .
|
||||
image: sthope/wiki
|
||||
volumes:
|
||||
- .:/docs
|
||||
ports:
|
||||
- 8000:8000
|
11
docker-compose.yml
Normal file
11
docker-compose.yml
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
services:
|
||||
sthope-wiki:
|
||||
image: squidfunk/mkdocs-material:latest
|
||||
container_name: sthope-wiki
|
||||
restart: unless-stopped
|
||||
network_mode: sthope
|
||||
volumes:
|
||||
- /home/sthope/Documents/docker/mkdocs:/docs
|
||||
ports:
|
||||
- "8000:8000"
|
@ -1,11 +0,0 @@
|
||||
In your Swag environments add:
|
||||
```yml
|
||||
- DOCKER_MODS=
|
||||
```
|
||||
|
||||
```
|
||||
linuxserver/mods:swag-dbip
|
||||
linuxserver/mods:swag-auto-reload
|
||||
linuxserver/mods:swag-cloudflare-real-ip
|
||||
linuxserver/mods:swag-dashboard
|
||||
```
|
@ -1,57 +0,0 @@
|
||||
# [Theme-Park](https://docs.theme-park.dev/)
|
||||
|
||||
Inside `/config/nginx` folder create file named `theme-park.conf` with:
|
||||
|
||||
```
|
||||
proxy_set_header Accept-Encoding "";
|
||||
sub_filter
|
||||
'</head>'
|
||||
'<link rel="stylesheet" type="text/css" href="https://theme-park.dev/css/base/$app/$theme.css">
|
||||
</head>';
|
||||
sub_filter_once on;
|
||||
```
|
||||
|
||||
|
||||
Now on the subdomain or subfolder file inside location add:
|
||||
|
||||
```yaml
|
||||
# Theme-Park
|
||||
set $app guacamole;
|
||||
set $theme organizr;
|
||||
include /config/nginx/theme-park.conf;
|
||||
```
|
||||
|
||||
|
||||
For example:
|
||||
|
||||
```
|
||||
server {
|
||||
listen 443 ssl;
|
||||
listen [::]:443 ssl;
|
||||
|
||||
server_name portal.*;
|
||||
|
||||
include /config/nginx/ssl.conf;
|
||||
client_max_body_size 0;
|
||||
|
||||
location / {
|
||||
proxy_pass http://guacamole:8080/guacamole/;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection $http_connection;
|
||||
access_log off;
|
||||
include /config/nginx/proxy.conf;
|
||||
include /config/nginx/resolver.conf;
|
||||
|
||||
# Theme-Park
|
||||
set $app guacamole;
|
||||
set $theme organizr;
|
||||
include /config/nginx/theme-park.conf;
|
||||
|
||||
proxy_buffering off;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
`set $app` is the app name found here [in Theme-Park website](https://theme-park.dev/#about)<br>
|
||||
`set $theme` is the theme name found can be [found here](https://docs.theme-park.dev/theme-options/)
|
143
mkdocs copy.yml
143
mkdocs copy.yml
@ -1,143 +0,0 @@
|
||||
site_name: Sthope Wiki
|
||||
repo_url: https://git.sthope.dev/sthope/wiki
|
||||
repo_name: sthope/wiki
|
||||
edit_uri: _edit/master/docs/
|
||||
site_url: https://wiki.sthope.dev
|
||||
site_author: sthope
|
||||
|
||||
|
||||
theme:
|
||||
name: material
|
||||
language: en
|
||||
logo: images/sthope_wiki.png
|
||||
favicon: images/assets/favicon.png
|
||||
icon:
|
||||
repo: fontawesome/brands/github
|
||||
logo: fontawesome/regular/folder-open
|
||||
palette:
|
||||
- scheme: slate
|
||||
toggle:
|
||||
icon: material/weather-sunny
|
||||
name: Switch to light mode
|
||||
- scheme: default
|
||||
toggle:
|
||||
icon: material/weather-night
|
||||
name: Switch to dark mode
|
||||
|
||||
font:
|
||||
code: Jet Brains Mono
|
||||
features:
|
||||
- navigation.instant
|
||||
#- navigation.sections # prevents collapsible sections
|
||||
#- navigation.expand #expands sections by default
|
||||
# insiders only
|
||||
- search.suggest
|
||||
|
||||
plugins:
|
||||
- git-revision-date
|
||||
- search
|
||||
- minify:
|
||||
minify_html: true
|
||||
- external-markdown
|
||||
|
||||
markdown_extensions:
|
||||
- abbr
|
||||
- admonition # enables coloured blocks mid article
|
||||
- attr_list # improves image handling
|
||||
- pymdownx.details # enables collapsible admonitions
|
||||
- footnotes
|
||||
- meta # adds support for front matter
|
||||
- toc:
|
||||
permalink: true
|
||||
toc_depth: 4
|
||||
- pymdownx.highlight: # code highlighting
|
||||
linenums: true
|
||||
# anchor_linenums: true
|
||||
- pymdownx.tabbed # enables tabs for embedded blocks
|
||||
# - pymdownx.inlinehilite
|
||||
- pymdownx.snippets
|
||||
- pymdownx.superfences # allows for the nesting of code blocks inside other blocks
|
||||
- pymdownx.keys
|
||||
|
||||
copyright: Sthope © 2022
|
||||
extra:
|
||||
social:
|
||||
- icon: 'fontawesome/brands/github'
|
||||
link: 'https://github.com/sthopeless'
|
||||
name: GitHub
|
||||
- icon: 'fontawesome/brands/git'
|
||||
link: 'https://git.sthope.dev/sthope'
|
||||
name: Gitea
|
||||
- icon: 'fontawesome/brands/discord'
|
||||
link: 'https://discordapp.com/users/365825462074605569/'
|
||||
name: Message me on Discord
|
||||
|
||||
nav:
|
||||
# - Tutorials:
|
||||
# - MKDocs with Gitea and Drone: tutorials/mkdocs-with-gitea-and-drone.md
|
||||
- Proxmox:
|
||||
# - Debian VM: proxmox/Debian-VM.md
|
||||
- Home Assistant on Proxmox: proxmox/how-to-install-home-assistant.md
|
||||
- LXC Debian: proxmox/LXC-Debian.md
|
||||
- LXC Passthrough: proxmox/Passthrough.md
|
||||
- Proxmox send CPU Temp to Home-Assistant/MQTT: proxmox/send-cpu-temp-to-ha.md
|
||||
- Ubuntu VM Resize Disk: proxmox/ubuntu-vm-resize-disk.md
|
||||
# - VM Passthrough Harddrives: proxmox/vm-passthrough-harddrives.md
|
||||
- Portainer Stacks:
|
||||
- Airsonic: portainer-stacks/Airsonic.md
|
||||
- authelia: portainer-stacks/authelia.md
|
||||
- Authentik: portainer-stacks/Authentik.md
|
||||
- bazarr: portainer-stacks/bazarr.md
|
||||
- Bitwarden: portainer-stacks/Bitwarden.md
|
||||
- CrowdSec: portainer-stacks/CrowdSec.md
|
||||
- cryptpad: portainer-stacks/cryptpad.md
|
||||
- dashy: portainer-stacks/dashy.md
|
||||
- digiKam: portainer-stacks/digiKam.md
|
||||
- Dillinger: portainer-stacks/Dillinger.md
|
||||
- Drone: portainer-stacks/Drone.md
|
||||
- ethercalc: portainer-stacks/ethercalc.md
|
||||
- Gitea: portainer-stacks/Gitea.md
|
||||
- guacamole: portainer-stacks/guacamole.md
|
||||
- heimdall: portainer-stacks/heimdall.md
|
||||
- invidious: portainer-stacks/invidious.md
|
||||
- jellyfin: portainer-stacks/jellyfin.md
|
||||
- LibrePhotos: portainer-stacks/LibrePhotos.md
|
||||
- Librespeed: portainer-stacks/Librespeed.md
|
||||
- mealie: portainer-stacks/mealie.md
|
||||
- mqtt-explorer: portainer-stacks/mqtt-explorer.md
|
||||
- MQTT-Mosquitto: portainer-stacks/MQTT-Mosquitto.md
|
||||
- n8n: portainer-stacks/n8n.md
|
||||
- Nextcloud: portainer-stacks/Nextcloud.md
|
||||
- octoprint: portainer-stacks/octoprint.md
|
||||
- Ombi: portainer-stacks/Ombi.md
|
||||
- onlyoffice: portainer-stacks/onlyoffice.md
|
||||
- Overseerr: portainer-stacks/Overseerr.md
|
||||
- phoneinfoga: portainer-stacks/phoneinfoga.md
|
||||
- PhotoView: portainer-stacks/PhotoView.md
|
||||
- piped: portainer-stacks/piped.md
|
||||
- Prowlarr: portainer-stacks/Prowlarr.md
|
||||
- qbittorrent: portainer-stacks/qbittorrent.md
|
||||
- rustdesk: portainer-stacks/rustdesk.md
|
||||
- samba: portainer-stacks/samba.md
|
||||
- shlink: portainer-stacks/shlink.md
|
||||
- Swag: portainer-stacks/Swag.md
|
||||
- tailscale: portainer-stacks/tailscale.md
|
||||
- TasmoBackup: portainer-stacks/TasmoBackup.md
|
||||
- Tasmota-Device-Manager: portainer-stacks/Tasmota-Device-Manager.md
|
||||
- Transmission: portainer-stacks/Transmission.md
|
||||
- tvheadend: portainer-stacks/tvheadend.md
|
||||
- uptime-kuma: portainer-stacks/uptime-kuma.md
|
||||
- VSCode: portainer-stacks/VSCode.md
|
||||
- Whisparr: portainer-stacks/Whisparr.md
|
||||
- WireGuard: portainer-stacks/WireGuard.md
|
||||
- Zigbee2MQTT: portainer-stacks/Zigbee2MQTT.md
|
||||
- Swag:
|
||||
- Swag: portainer-stacks/Swag.md
|
||||
- Swag MODs: portainer-stacks/Swag/Swag-MODS.md
|
||||
- Authelia: portainer-stacks/authelia.md
|
||||
- Theme-Park: portainer-stacks/Swag/adding-theme-park.md
|
||||
- cmnds:
|
||||
- 101: cmnds/101.md
|
||||
- AddUser 1Line: cmnds/adduser-1line.md
|
||||
- Tasmota Backlogs: cmnds/tasmota-backlogs.md
|
||||
- sthope: '/portainer-stacks/'
|
115
mkdocs.yml
115
mkdocs.yml
@ -5,7 +5,6 @@ edit_uri: _edit/master/docs/
|
||||
site_url: https://wiki.sthope.dev
|
||||
site_author: sthope
|
||||
|
||||
|
||||
theme:
|
||||
name: material
|
||||
language: en
|
||||
@ -34,11 +33,11 @@ theme:
|
||||
- search.suggest
|
||||
|
||||
plugins:
|
||||
- git-revision-date
|
||||
# - git-revision-date
|
||||
- search
|
||||
- minify:
|
||||
minify_html: true
|
||||
- external-markdown
|
||||
# - external-markdown
|
||||
|
||||
markdown_extensions:
|
||||
- abbr
|
||||
@ -59,7 +58,7 @@ markdown_extensions:
|
||||
- pymdownx.superfences # allows for the nesting of code blocks inside other blocks
|
||||
- pymdownx.keys
|
||||
|
||||
copyright: Sthope © 2022
|
||||
copyright: Sthope © 2024
|
||||
extra:
|
||||
social:
|
||||
- icon: 'fontawesome/brands/github'
|
||||
@ -73,8 +72,6 @@ extra:
|
||||
name: Message me on Discord
|
||||
|
||||
nav:
|
||||
# - Tutorials:
|
||||
# - MKDocs with Gitea and Drone: tutorials/mkdocs-with-gitea-and-drone.md
|
||||
- Proxmox:
|
||||
# - Debian VM: proxmox/Debian-VM.md
|
||||
- Home Assistant on Proxmox: proxmox/how-to-install-home-assistant.md
|
||||
@ -83,62 +80,56 @@ nav:
|
||||
- Proxmox send CPU Temp to Home-Assistant/MQTT: proxmox/send-cpu-temp-to-ha.md
|
||||
- Ubuntu VM Resize Disk: proxmox/ubuntu-vm-resize-disk.md
|
||||
# - VM Passthrough Harddrives: proxmox/vm-passthrough-harddrives.md
|
||||
- Portainer Stacks:
|
||||
- Airsonic: portainer-stacks/Airsonic.md
|
||||
- authelia: portainer-stacks/authelia.md
|
||||
- Authentik: portainer-stacks/Authentik.md
|
||||
- bazarr: portainer-stacks/bazarr.md
|
||||
- Bitwarden: portainer-stacks/Bitwarden.md
|
||||
- CrowdSec: portainer-stacks/CrowdSec.md
|
||||
- cryptpad: portainer-stacks/cryptpad.md
|
||||
- dashy: portainer-stacks/dashy.md
|
||||
- digiKam: portainer-stacks/digiKam.md
|
||||
- Dillinger: portainer-stacks/Dillinger.md
|
||||
- Drone: portainer-stacks/Drone.md
|
||||
- ethercalc: portainer-stacks/ethercalc.md
|
||||
- Gitea: portainer-stacks/Gitea.md
|
||||
- guacamole: portainer-stacks/guacamole.md
|
||||
- heimdall: portainer-stacks/heimdall.md
|
||||
- invidious: portainer-stacks/invidious.md
|
||||
- jellyfin: portainer-stacks/jellyfin.md
|
||||
- LibrePhotos: portainer-stacks/LibrePhotos.md
|
||||
- Librespeed: portainer-stacks/Librespeed.md
|
||||
- mealie: portainer-stacks/mealie.md
|
||||
- mqtt-explorer: portainer-stacks/mqtt-explorer.md
|
||||
- MQTT-Mosquitto: portainer-stacks/MQTT-Mosquitto.md
|
||||
- n8n: portainer-stacks/n8n.md
|
||||
- Nextcloud: portainer-stacks/Nextcloud.md
|
||||
- octoprint: portainer-stacks/octoprint.md
|
||||
- Ombi: portainer-stacks/Ombi.md
|
||||
- onlyoffice: portainer-stacks/onlyoffice.md
|
||||
- Overseerr: portainer-stacks/Overseerr.md
|
||||
- phoneinfoga: portainer-stacks/phoneinfoga.md
|
||||
- PhotoView: portainer-stacks/PhotoView.md
|
||||
- piped: portainer-stacks/piped.md
|
||||
- Prowlarr: portainer-stacks/Prowlarr.md
|
||||
- qbittorrent: portainer-stacks/qbittorrent.md
|
||||
- rustdesk: portainer-stacks/rustdesk.md
|
||||
- samba: portainer-stacks/samba.md
|
||||
- shlink: portainer-stacks/shlink.md
|
||||
- Swag: portainer-stacks/Swag.md
|
||||
- tailscale: portainer-stacks/tailscale.md
|
||||
- TasmoBackup: portainer-stacks/TasmoBackup.md
|
||||
- Tasmota-Device-Manager: portainer-stacks/Tasmota-Device-Manager.md
|
||||
- Transmission: portainer-stacks/Transmission.md
|
||||
- tvheadend: portainer-stacks/tvheadend.md
|
||||
- uptime-kuma: portainer-stacks/uptime-kuma.md
|
||||
- VSCode: portainer-stacks/VSCode.md
|
||||
- Whisparr: portainer-stacks/Whisparr.md
|
||||
- WireGuard: portainer-stacks/WireGuard.md
|
||||
- Zigbee2MQTT: portainer-stacks/Zigbee2MQTT.md
|
||||
- Swag:
|
||||
- Swag: portainer-stacks/Swag.md
|
||||
- Swag MODs: portainer-stacks/Swag/Swag-MODS.md
|
||||
- Authelia: portainer-stacks/authelia.md
|
||||
- Theme-Park: portainer-stacks/Swag/adding-theme-park.md
|
||||
- Docker Composes:
|
||||
- docker-compose/Airsonic.md
|
||||
- docker-compose/Authentik.md
|
||||
- docker-compose/Bitwarden.md
|
||||
- docker-compose/CrowdSec.md
|
||||
- docker-compose/Dillinger.md
|
||||
- docker-compose/Drone.md
|
||||
- docker-compose/Gitea.md
|
||||
- docker-compose/LibrePhotos.md
|
||||
- docker-compose/Librespeed.md
|
||||
- docker-compose/MQTT-Mosquitto.md
|
||||
- docker-compose/Nextcloud.md
|
||||
- docker-compose/Ombi.md
|
||||
- docker-compose/Overseerr.md
|
||||
- docker-compose/PhotoView.md
|
||||
- docker-compose/Prowlarr.md
|
||||
- docker-compose/Swag.md
|
||||
- docker-compose/TasmoBackup.md
|
||||
- docker-compose/Tasmota-Device-Manager.md
|
||||
- docker-compose/Transmission.md
|
||||
- docker-compose/VSCode.md
|
||||
- docker-compose/Whisparr.md
|
||||
- docker-compose/WireGuard.md
|
||||
- docker-compose/Zigbee2MQTT.md
|
||||
- docker-compose/authelia.md
|
||||
- docker-compose/bazarr.md
|
||||
- docker-compose/cryptpad.md
|
||||
- docker-compose/dashy.md
|
||||
- docker-compose/digiKam.md
|
||||
- docker-compose/ethercalc.md
|
||||
- docker-compose/guacamole.md
|
||||
- docker-compose/heimdall.md
|
||||
- docker-compose/invidious.md
|
||||
- docker-compose/jdownloader.md
|
||||
- docker-compose/jellyfin.md
|
||||
- docker-compose/mealie.md
|
||||
- docker-compose/mqtt-explorer.md
|
||||
- docker-compose/n8n.md
|
||||
- docker-compose/octoprint.md
|
||||
- docker-compose/onlyoffice.md
|
||||
- docker-compose/phoneinfoga.md
|
||||
- docker-compose/piped.md
|
||||
- docker-compose/qbittorrent.md
|
||||
- docker-compose/rustdesk.md
|
||||
- docker-compose/samba.md
|
||||
- docker-compose/shlink.md
|
||||
- docker-compose/tailscale.md
|
||||
- docker-compose/tvheadend.md
|
||||
- docker-compose/uptime-kuma.md
|
||||
- cmnds:
|
||||
- 101: cmnds/101.md
|
||||
- AddUser 1Line: cmnds/adduser-1line.md
|
||||
- Tasmota Backlogs: cmnds/tasmota-backlogs.md
|
||||
- sthope: '/portainer-stacks/'
|
||||
|
||||
- Tasmota Backlogs: cmnds/tasmota-backlogs.md
|
@ -1,7 +0,0 @@
|
||||
mkdocs==1.3.0
|
||||
mkdocs-material==8.2.10
|
||||
mkdocs-material-extensions==1.0.3
|
||||
mkdocs-minify-plugin==0.5.0
|
||||
mkdocs-git-revision-date-plugin==0.3.2
|
||||
pymdown-extensions==9.3
|
||||
|
@ -1,8 +0,0 @@
|
||||
mkdocs==1.2.1
|
||||
mkdocs-material==7.1.9
|
||||
mkdocs-material-extensions==1.0.1
|
||||
mkdocs-minify-plugin==0.4.0
|
||||
mkdocs-git-revision-date-plugin==0.3.1
|
||||
pymdown-extensions==8.2
|
||||
mkdocs-embed-external-markdown
|
||||
Jinja2==3.0.1
|
@ -1,33 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import os
|
||||
import subprocess
|
||||
import argparse
|
||||
|
||||
# Parse command-line arguments
|
||||
parser = argparse.ArgumentParser(description="Generate navigation entries for mkdocs.yml")
|
||||
parser.add_argument("--replace", action="store_true", help="Replace mkdocs.yml with new content")
|
||||
parser.add_argument("--COMMIT_MSG", help="Commit message for Git")
|
||||
args = parser.parse_args()
|
||||
|
||||
# Get the commit message from command-line argument or prompt user
|
||||
if args.COMMIT_MSG:
|
||||
commit_msg = args.COMMIT_MSG
|
||||
else:
|
||||
commit_msg = input("Enter commit message: ")
|
||||
if not commit_msg.strip(): # Check if the input message is empty
|
||||
commit_msg = "Initial commit" # Set default commit message
|
||||
|
||||
# Add changes to the staging area
|
||||
subprocess.run(["python3", "./scripts/list_new_docker_files.py", "--replace"], check=True)
|
||||
|
||||
# Add changes to the staging area
|
||||
subprocess.run(["git", "add", "."], check=True)
|
||||
|
||||
# Commit changes
|
||||
subprocess.run(["git", "commit", "-m", commit_msg], check=True)
|
||||
|
||||
# Push changes
|
||||
subprocess.run(["git", "push"], check=True)
|
||||
|
||||
print("Changes have been added, committed, and pushed.")
|
@ -1,72 +0,0 @@
|
||||
import os
|
||||
import argparse
|
||||
|
||||
# Read the original mkdocs.yml content
|
||||
with open('mkdocs.yml', 'r') as file:
|
||||
lines = file.readlines()
|
||||
|
||||
# Find the start and end indexes of the section to replace
|
||||
start_index = None
|
||||
end_index = None
|
||||
for i, line in enumerate(lines):
|
||||
if line.strip() == '- Portainer Stacks:':
|
||||
start_index = i
|
||||
elif line.strip() == '- Swag:':
|
||||
end_index = i
|
||||
break
|
||||
|
||||
# Replace the lines between start and end indexes with the new content
|
||||
if start_index is not None and end_index is not None:
|
||||
lines[start_index:end_index + 1] = [' - Portainer Stacks:\n', ' - Swag:\n']
|
||||
|
||||
# Write the modified content back to the mkdocs.yml file
|
||||
with open('mkdocs.yml', 'w') as file:
|
||||
file.writelines(lines)
|
||||
|
||||
# Define the directory containing Portainer Stack Markdown files
|
||||
markdown_dir = "./docs/portainer-stacks"
|
||||
|
||||
# Define the relative path prefix used in mkdocs.yml
|
||||
relative_path_prefix = "portainer-stacks/"
|
||||
|
||||
# Read the existing mkdocs.yml content
|
||||
with open("mkdocs.yml", "r") as f:
|
||||
mkdocs_content = f.read()
|
||||
|
||||
# Parse command-line arguments
|
||||
parser = argparse.ArgumentParser(description="Generate navigation entries for mkdocs.yml")
|
||||
parser.add_argument("--replace", action="store_true", help="Replace mkdocs.yml with new content")
|
||||
args = parser.parse_args()
|
||||
|
||||
# Generate navigation entries
|
||||
nav_entries = []
|
||||
for filename in os.listdir(markdown_dir):
|
||||
if filename.endswith(".md"):
|
||||
title = filename[:-3] # Remove ".md" extension
|
||||
relative_path = f"{relative_path_prefix}{filename}" # Generate relative path
|
||||
nav_entries.append(f" - {title}: {relative_path}") # Add 4 spaces
|
||||
|
||||
# List of names to ignore
|
||||
names_to_ignore = ["template"] # Add names you want to ignore here
|
||||
|
||||
# Filter out entries to ignore
|
||||
filtered_nav_entries = [entry for entry in nav_entries if not any(name in entry for name in names_to_ignore)]
|
||||
|
||||
# Sort the navigation entries alphabetically (case-insensitive)
|
||||
sorted_nav_entries = sorted(filtered_nav_entries, key=lambda entry: entry.lower())
|
||||
|
||||
# If --replace option is provided, replace the existing "Portainer Stacks" section
|
||||
if args.replace:
|
||||
# Combine all the sorted navigation entries into a single string
|
||||
new_section_content = "\n".join(sorted_nav_entries)
|
||||
|
||||
# Replace the existing "Portainer Stacks" section
|
||||
updated_mkdocs_content = mkdocs_content.replace(" - Portainer Stacks:\n", f" - Portainer Stacks:\n{new_section_content}\n")
|
||||
|
||||
# Write the updated content back to mkdocs.yml
|
||||
with open("mkdocs.yml", "w") as f:
|
||||
f.write(updated_mkdocs_content)
|
||||
else:
|
||||
# Print the sorted navigation entries with 4 spaces
|
||||
for entry in sorted_nav_entries:
|
||||
print(entry)
|
Loading…
x
Reference in New Issue
Block a user