From 49bd213942a9b0653f04ed6cda76a2c7defe0e82 Mon Sep 17 00:00:00 2001 From: Barry Deen Date: Thu, 12 Sep 2024 15:24:31 -0400 Subject: [PATCH] update readme with minimum followers --- .env.example | 7 ++++--- README.md | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index be45312..d4e4f7a 100644 --- a/.env.example +++ b/.env.example @@ -8,10 +8,11 @@ RELAY_URL="wss://wot.utxo.one" DB_PATH="db" # where we should store the index.html and static files -INDEX_PATH="templates/index.html" -STATIC_PATH="templates/static" +INDEX_PATH="/mnt/dev/bitvora/wot-relay/templates/index.html" +STATIC_PATH="/mnt/dev/bitvora/wot-relay/templates/static/" # relay behavior # how often to refresh the relay's view of the WoT in HOURS -REFRESH_INTERVAL_HOURS=1 \ No newline at end of file +REFRESH_INTERVAL_HOURS=1 +MINIMUM_FOLLOWERS=5 \ No newline at end of file diff --git a/README.md b/README.md index 7bc4ff6..529f39a 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ DB_PATH="/home/ubuntu/wot-relay/db" # any path you would like the database to be INDEX_PATH="/home/ubuntu/wot-relay/templates/index.html" # path to the index.html file STATIC_PATH="/home/ubuntu/wot-relay/templates/static" # path to the static folder REFRESH_INTERVAL_HOURS=24 # interval in hours to refresh the web of trust +MINIMUM_FOLLOWERS=3 #how many followers before they're allowed in the WoT ``` ### 4. Build the project