Update README and requirements.
This commit is contained in:
parent
f62fe0b7f5
commit
4d7d3ea00d
3 changed files with 53 additions and 4 deletions
25
README.md
25
README.md
|
@ -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
|
||||||
```
|
```
|
||||||
|
|
|
@ -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
1
requirements.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
lektor >= 3.3.12
|
Loading…
Reference in a new issue