* Remove bleach and Markdown which were used for server-side markdown
* Update README with hypothetical self-hosting steps
* Remove install_xapian from version control (since I can't license it)
This code (but not the name or text) for this project is released into the public domain (as specified in the file LICENSE).
The code in this repository is released into the public domain (as specified in the file LICENSE).
## Notes for running yourself
First off, this is not necessarily recommended. Making it easy for other people to host was not a priority in designing this project. You should be prepared to maintain your own fork and edit the source to suit your own needs. The About page is not applicable to you, for instance.
Running in production requires a WSGI host, which is way beyond the scope of this README to set up.
Since both production and my local development instance have a large (500+) number of posts, behavior with a small number of posts is untested and undefined. I do know that the system assumes that there is at least one post, and the main page will error if that's not the case. Pull requests (or emailed git patches) to fix this or similar bugs would be accepted.
Disabling pagination is possible by editing ./main/pagination.py.
After cloning, you should create a `.env` to define environment variables. Read whispermaphone/settings.py.
You can generate a SECRET_KEY with `python3 -c "import secrets; print(''.join([secrets.choice('abcdefghijklmnopqrstuvwxyz0123456789\!@#$%^&*(-_=+)') for i in range(50)]))"`.
To post, go to /post manually.
## Installing
@ -19,23 +34,29 @@ python -m venv venv
. ./venv/bin/activate
# Install Requirements
# Note: This includes all requirements used by me at any point
# For a minimal (just django) install, you can leave off
# `xapian-haystack` (used for advanced search) and `jetforce`, used for Gemini mirroring