|
| 1 | +## Render Engine CLI |
| 2 | + |
| 3 | +[](https://github.com/render-engine/render-engine-cli/actions/workflows/test.yml) |
| 4 | +[](https://github.com/astral-sh/ruff) |
| 5 | +[](https://discord.gg/2xMQ4j4d8m) |
| 6 | + |
| 7 | +Render Engine CLI is the CLI tool for the Render Engine static site generator. |
| 8 | + |
| 9 | +## Learn More |
| 10 | + |
| 11 | +- [CLI Documentation](https://render-engine.readthedocs.io/en/latest/cli/) |
| 12 | +- [Check out the Render Engien Documentation](https://render-engine.readthedocs.io/en/latest/) |
| 13 | +- [Contributors and Builders, Check out the Wiki](https://github.com/render-engine/render-engine/wiki) |
| 14 | +- [Join the community!](https://discord.gg/2xMQ4j4d8m) |
| 15 | + |
| 16 | +## Installing the Render Engine CLI |
| 17 | + |
| 18 | +To use the render engine, you must have Python 3.10 or greater installed. You can download Python from [python.org](https://python.org). |
| 19 | + |
| 20 | +- Linux/MacOS: [python.org](https://python.org) |
| 21 | +- Windows: [Microsoft Store](https://apps.microsoft.com/store/detail/python-311/9NRWMJP3717K) |
| 22 | + |
| 23 | +The Render Engine CLI is available in PyPI and can be installed via `pip` or `uv`: |
| 24 | + |
| 25 | +```shell |
| 26 | +pip install render-engine-cli # via pip |
| 27 | +uv pip install render-engine-cli # via uv |
| 28 | +``` |
| 29 | + |
| 30 | +Since render engine itself is one of the dependencies of the CLI there is no need to isntall |
| 31 | +them separately. With that, the version of render engine in the CLI dependencies is not pinned |
| 32 | +to a specific version so if you want to pin it you can do so either in your `requirements.txt` |
| 33 | +(`pip`) or `pyproject.toml` (`uv`) files. |
| 34 | + |
| 35 | +```shell |
| 36 | +# requirements.text |
| 37 | +render-engine-cli |
| 38 | +render-engine==<version to pin> |
| 39 | + |
| 40 | + |
| 41 | +# pyproject.toml |
| 42 | +[project] |
| 43 | +dependencies = [ |
| 44 | + "render-engine-cli", |
| 45 | + "render-engine==<version to pin>" |
| 46 | +] |
| 47 | +``` |
| 48 | + |
| 49 | +## Getting Started |
| 50 | + |
| 51 | +Check out the [Getting Started](https://render-engine.readthedocs.io/en/latest/page/) Section in the [Documentation](https://render-engine.readthedocs.io) |
0 commit comments