2024-09-12 00:17:00 +02:00
|
|
|
## Website ansible.l3d.space
|
2023-04-02 22:43:54 +02:00
|
|
|
|
|
|
|
## Venv
|
2024-09-12 00:17:00 +02:00
|
|
|
|
|
|
|
```bash
|
|
|
|
# Install Requirements
|
|
|
|
sudo make install
|
|
|
|
|
2023-04-02 22:43:54 +02:00
|
|
|
# Install Venv
|
|
|
|
python3 -m venv lektor
|
|
|
|
|
|
|
|
# Enable Source
|
|
|
|
source lektor/bin/activate
|
|
|
|
|
2024-09-12 00:17:00 +02:00
|
|
|
# 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
|
2023-04-02 22:43:54 +02:00
|
|
|
```
|