Update README and requirements.

This commit is contained in:
L3D 2024-09-12 00:17:00 +02:00
parent f62fe0b7f5
commit 4d7d3ea00d
Signed by: l3d
GPG key ID: CD08445BFF4313D1
3 changed files with 53 additions and 4 deletions

View file

@ -1,13 +1,30 @@
Website ansible.l3d.space ## Website ansible.l3d.space
## Venv ## Venv
```
```bash
# Install Requirements
sudo make install
# Install Venv # Install Venv
python3 -m venv lektor python3 -m venv lektor
# Enable Source # Enable Source
source lektor/bin/activate source lektor/bin/activate
# Install lektor # Install python requirements
sudo make install 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
``` ```

View file

@ -515,6 +515,37 @@ role_name: l3d.forgejo_runner
----- -----
galaxy_name: l3d.git.forgejo_runner galaxy_name: l3d.git.forgejo_runner
#### collections #### #### 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 name: Ansible Avahi Collection
---- ----
gitrepo: https://github.com/roles-ansible/ansible_collection_avahi.git gitrepo: https://github.com/roles-ansible/ansible_collection_avahi.git

1
requirements.txt Normal file
View file

@ -0,0 +1 @@
lektor >= 3.3.12