From 4d7d3ea00dccabdee952a53c0720c4e1c580c791 Mon Sep 17 00:00:00 2001 From: L3D Date: Thu, 12 Sep 2024 00:17:00 +0200 Subject: [PATCH] Update README and requirements. --- README.md | 25 +++++++++++++++++++++---- content/contents.lr | 31 +++++++++++++++++++++++++++++++ requirements.txt | 1 + 3 files changed, 53 insertions(+), 4 deletions(-) create mode 100644 requirements.txt diff --git a/README.md b/README.md index 59b004f..2296e21 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,30 @@ -Website ansible.l3d.space +## Website ansible.l3d.space ## Venv -``` + +```bash +# Install Requirements +sudo make install + # Install Venv python3 -m venv lektor # Enable Source source lektor/bin/activate -# Install lektor -sudo make install +# Install python requirements +pip3 install --upgrade -r requirements.txt + +## Update Submodules +git submodule update --init --recursive +``` + +## Run Lektor + +```bash +# Enable Source +source lektor/bin/activate + +# Run Lektor Server +make server ``` diff --git a/content/contents.lr b/content/contents.lr index 121d366..f8c438e 100644 --- a/content/contents.lr +++ b/content/contents.lr @@ -515,6 +515,37 @@ role_name: l3d.forgejo_runner ----- galaxy_name: l3d.git.forgejo_runner #### collections #### +name: Ansible Linux Collection +---- +gitrepo: https://github.com/roles-ansible/ansible_collection_linux.git +---- +gitearepo: https://git.l3d.ch/ansible/ansible_collection_linux.git +---- +no_galaxy: true +---- +galaxy_name: l3d.linux +---- +galaxy_url: https://galaxy.ansible.com/ui/repo/published/l3d/linux/ +---- +maintainance: true +---- +license: MIT +---- +roles: + +##### single ##### +name: Linux Packages +----- +role_name: l3d.packages +----- +galaxy_name: l3d.linux.packages +##### single ##### +name: Resolve Conf +----- +role_name: l3d.resolvconf +----- +galaxy_name: l3d.linux.resolvconf +#### collections #### name: Ansible Avahi Collection ---- gitrepo: https://github.com/roles-ansible/ansible_collection_avahi.git diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..9e5644b --- /dev/null +++ b/requirements.txt @@ -0,0 +1 @@ +lektor >= 3.3.12