Go to file
Matthias Portzel 30918a179f About page public domain wording change 2022-06-04 09:11:03 -04:00
thoughts About page public domain wording change 2022-06-04 09:11:03 -04:00
whispermaphone Move search templates 2022-05-03 13:31:01 -04:00
.gitignore Remove unused requirements and update README 2022-02-07 13:48:15 -05:00
LICENSE Lower case disclaimer in license because we are not savages 2022-03-02 23:01:42 -05:00
README About page public domain wording change 2022-06-04 09:11:03 -04:00
jetforce_app.py Fix gemini about page 2022-05-07 17:11:11 -04:00
manage.py Current page tweaks 2022-05-12 08:16:44 -05:00
requirements.txt Remove unneeded requirement 2022-04-04 12:11:32 -04:00

README

# WhisperMaPhone
"I will call you by Whisper-ma-Phone, for the secrets I tell are for your ears alone."
 - The Once-ler, *The Lorax*

## Copyright

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 ./thoughts/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

```sh
# Clone
git clone https://tildegit.org/Matthias/WhisperMaPhone
cd WhisperMaPhone

# Create a virtual environment
# Python 3 should go without saying in 2021
python -m venv venv

# Activate
. ./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
pip install -r requirements.txt

# To install xapian to power /search:
    curl -OL https://tildegit.org/matthias/xapian-haystack/raw/branch/master/install_xapian.sh

    # NOTE: make sure the virtual enviroment is enabled before running this
    # Check the latest version of xapian from https://xapian.org
    # As of writing, that's 1.4.19
    sh install_xapian.sh <version>

    ./manage.py rebuild_index

# Otherwise, disable xapian by patching settings.py like so
    patch whispermaphone/settings.py <<EOF
54,55c54
<         "ENGINE": "xapian_backend.XapianEngine",
<         "PATH": str(BASE_DIR /  "xapian_index")
---
>         "ENGINE": "haystack.backends.simple_backend.SimpleEngine"
EOF


```