30 lines
415 B
Markdown
30 lines
415 B
Markdown
## Website ansible.l3d.space
|
|
|
|
## Venv
|
|
|
|
```bash
|
|
# Install Requirements
|
|
sudo make install
|
|
|
|
# Install Venv
|
|
python3 -m venv lektor
|
|
|
|
# Enable Source
|
|
source lektor/bin/activate
|
|
|
|
# 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
|
|
```
|