New pages
From Freephile Wiki
30 October 2025
- 23:1123:11, 30 October 2025 Meza/Halloween release (hist | edit) [7,294 bytes] Admin (talk | contribs) (Created page with "== Issues == Fully linked issues are complete. Issues with only a link on the issue ID are in progress. # <bdi>update Project documentation and Online resources</bdi> [https://github.com/freephile/meza/issues/3 #3] # <bdi>Restructure Meza into multiple roles and collection(s)</bdi> [https://github.com/freephile/meza/issues/42 #42] # [https://github.com/freephile/meza/issues/44 <bdi>Ensure .smw.json has a home</bdi> #44] # [https://github.com/freephile/meza/issues/48 cre...") Tag: Visual edit
- 09:3509:35, 30 October 2025 Page components (hist | edit) [8,174 bytes] Admin (talk | contribs) (Created page with "{{Feature |description=Page Components is the name I'm using for a visual design system that lets Users easily compose pages with various "blocks" or "elements" on the page. }}")
- 02:0002:00, 30 October 2025 Meza/logs (hist | edit) [695 bytes] Admin (talk | contribs) (Created page with "* <code>write_create_wiki_log()</code> - Logs '''create-wiki''' operations with timestamp, environment, unique ID, condition, wiki details, and git information * <code>get_create_wiki_log_path()</code> - Gets the path to '''create-wiki''' log files for a given environment '''Transactional Log Format''' Filename: <code>create-wiki.log</code> Content: * timestamp env unique_id condition wiki_id wiki_name git_tag git_hash secret_hash public_hash args_string '''Processi...") Tag: Visual edit
- 01:3601:36, 30 October 2025 Meza/flow (hist | edit) [5,887 bytes] Admin (talk | contribs) (Describe the high-level execution flow of meza deploy and meza create wiki) Tag: Visual edit
28 October 2025
- 12:2712:27, 28 October 2025 Semantic MediaWiki/contributing (hist | edit) [2,862 bytes] Admin (talk | contribs) (Created page with "Semantic MediaWiki extensions have all largely adopted the Gesinn IT Docker-based approach to development. Once you've cloned a particular extension (e.g. SemanticResultFormats), then you want to execute a submodule update to pull in the build environment. <syntaxhighlight lang="bash"> # change to the src directory cd ~/src # clone a SMW extension that you want to work on git clone https://github.com/SemanticMediaWiki/SemanticResultFormats # make sure you've got the la...")
20 October 2025
- 21:2921:29, 20 October 2025 Meza commands (hist | edit) [634 bytes] Admin (talk | contribs) (embedding github manual)
12 October 2025
- 20:2620:26, 12 October 2025 Ansible Playbook Grapher with Mermaid (hist | edit) [26,209 bytes] Admin (talk | contribs) (Created page with "{{#mermaid:flowchart LR %% Start of the playbook '../src/playbooks/site.yml' playbook_f75a1bcd("../src/playbooks/site.yml") %% Start of the play 'play #1 (localhost): 1' play_03497c5b["play #1 (localhost): 1"] style play_03497c5b stroke:#608d3f,fill:#608d3f,color:#ffffff playbook_f75a1bcd --> |"1"| play_03497c5b linkStyle 0 stroke:#608d3f,color:#608d3f task_022778d6["[task] run ansible galaxy to install our 3rd-party roles from requirements"] style task...")
10 October 2025
- 07:0107:01, 10 October 2025 Ansible Playbook Grapher (hist | edit) [2,263 bytes] Admin (talk | contribs) (Created page with "If you use Ansible for automation, then you should be interested in a tool called [https://github.com/haidaraM/ansible-playbook-grapher Ansible Playbook Grapher] which allows you to visualize the workflow of your playbooks. I ran into [https://github.com/freephile/meza/issues/63 a little trouble getting it to work initially], but eventually was able to output graphs for Meza. thumb") Tag: Visual edit
3 October 2025
- 08:2908:29, 3 October 2025 Appimages (hist | edit) [1,811 bytes] Greg Rundlett (talk | contribs) (initial draft) Tag: Visual edit
26 September 2025
- 08:2108:21, 26 September 2025 Add newline to end of file (hist | edit) [587 bytes] Admin (talk | contribs) (Created page with "For yaml files, there should always be a newline character at the end of the file. It's easy to overlook, and some editors are misconfigured to '''remove''' trailing newlines, meaning it can be a battle to keep your yaml syntactically correct. When you can't use tools like yamllint to fix things, here's a one-liner that does the job. <syntaxhighlight lang="bash"> find . -name "*.yaml" -exec sh -c 'if [ -n "$(tail -c 1 "$1")" ]; then echo "" >> "$1"; fi' _ {} \;...")