diff --git a/README.md b/README.md index e28bda7..f472f34 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,7 @@ A simple way to serve pages and files over the [Reticulum network](https://retic ## Features -- Static and Dynamic pages. -- Serve files +- Serves pages and files. - Simple ## To-Do @@ -36,20 +35,22 @@ uv venv source .venv/bin/activate uv pip install rns-page-node -# Git +# Pipx via Git pipx install git+https://github.com/Sudo-Ivan/rns-page-node.git ``` +## Usage + ```bash # will use current directory for pages and files rns-page-node ``` -## Usage +or ```bash -rns-page-node --node-name "Page Node" --pages-dir ./pages --files-dir ./files --identity-dir ./node-config --announce-interval 360 +rns-page-node --node-name "Page Node" --pages-dir ./pages --files-dir ./files --identity-dir ./node-config --announce-interval 3600 ``` ### Docker/Podman diff --git a/pyproject.toml b/pyproject.toml index 38d2d70..7004424 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ authors = [ readme = "README.md" requires-python = ">=3.9" dependencies = [ - "rns (>=1.0.1,<1.5.0)" + "rns (>=1.0.2,<1.5.0)" ] [project.scripts] diff --git a/requirements.txt b/requirements.txt index b1abf87..91201b6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -rns=1.0.1 \ No newline at end of file +rns=1.0.2 \ No newline at end of file