From 97a3ae800ed7406892980a22cd70261b3ac8eb07 Mon Sep 17 00:00:00 2001 From: Soheb Date: Mon, 1 Apr 2024 20:29:15 +0100 Subject: [PATCH] Update INSTALL.MD to clarify that RECAPCHA_* isn't necessary --- INSTALL.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 3c33048f..5e166f20 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -110,12 +110,11 @@ pip install -r requirements.txt DATABASE_URL=postgresql+psycopg2://username:password@localhost/database_name ``` * Also change `SECRET_KEY` to some random sequence of numbers and letters. - * `RECAPTCHA_PUBLIC_KEY` and `RECAPTCHA_PRIVATE_KEY` can be generated at https://www.google.com/recaptcha/admin/create. + ### Extra info - * `SERVER_NAME` should be the domain of the site/instance. Use `127.0.0.1:5000` during development unless using ngrok. - +* `RECAPTCHA_PUBLIC_KEY` and `RECAPTCHA_PRIVATE_KEY` can be generated at https://www.google.com/recaptcha/admin/create (this is optional - omit to allow registration without RECAPCHA). * `CACHE_TYPE` can be `FileSystemCache` or `RedisCache`. `FileSystemCache` is fine during development (set `CACHE_DIR` to `/tmp/piefed` or `/dev/shm/piefed`) while `RedisCache` **should** be used in production. If using `RedisCache`, set `CACHE_REDIS_URL` to `redis://localhost:6379/1`