diff --git a/.gitignore b/.gitignore index 508dd36..0ec5474 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,9 @@ **/target/ *.dSYM +# mkdocs build output +/site/ + # Local files lore-server/config/local*.toml **/.grafana.local.yaml diff --git a/docs/how-to/deploy-local-lore-server.md b/docs/how-to/deploy-local-lore-server.md index a389639..10426a6 100644 --- a/docs/how-to/deploy-local-lore-server.md +++ b/docs/how-to/deploy-local-lore-server.md @@ -39,6 +39,12 @@ The binary and Docker paths are mutually exclusive, and each is complete on its $env:LORE_SERVER=1; irm https://raw.githubusercontent.com/EpicGames/lore/main/scripts/install.ps1 | iex ``` + Or install with [Scoop](https://scoop.sh): + + ```powershell + scoop install loreserver + ``` + 2. **Run it with default settings.** diff --git a/docs/how-to/install-lore-cli.md b/docs/how-to/install-lore-cli.md index 3d8ef46..98b164f 100644 --- a/docs/how-to/install-lore-cli.md +++ b/docs/how-to/install-lore-cli.md @@ -39,6 +39,12 @@ Pick this path for a normal install from a published release. irm https://raw.githubusercontent.com/EpicGames/lore/main/scripts/install.ps1 | iex ``` + Or install with [Scoop](https://scoop.sh): + + ```powershell + scoop install lore + ``` + The installer downloads the binary for your platform and adds it to your PATH. Open a new terminal session for the PATH change to take effect.