summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-07-03 11:04:00 +0100
committerJoe Carstairs <me@joeac.net>2026-07-03 11:04:00 +0100
commitba8aaa4aded3adf6f80557bde9f18612e2c21deb (patch)
tree0739c4cb5d8cca9d72cb44a003cecc06f4b7c6e9
parent9a93c6f9833ed0c3229bca9a0ef48dd2e36a0e79 (diff)
removes redundant README stuff
-rw-r--r--README.md42
1 files changed, 0 insertions, 42 deletions
diff --git a/README.md b/README.md
index c2c2507..1f1ab14 100644
--- a/README.md
+++ b/README.md
@@ -7,45 +7,3 @@ To install:
```sh
wget -O- https://git.joeac.net/joeac/joeac.net/raw/branch/main/install.sh | sh
```
-
-Structure:
-
-```
-/
-├── gemini My Gemini capsule
-├── smtp A local SMTP server
-└── http My Website
-```
-
-## Running with Podman
-
-These instructions will probably work with Docker, too: just substitute `podman`
-for `docker` in all the commands.
-
-To run with Podman, first set up your environment variables. Copy `example.env`
-to `.env` and edit the values accordingly.
-
-Then, create the `remote_smtp_password` secret, storing the password for the
-remote SMTP server which will send the contact emails on behalf of the website.
-
-```bash
-sudo podman secret create remote_smtp_password /path/to/remote/smtp/password
-```
-
-Now build and start the containers:
-
-```bash
-sudo podman-compose build && sudo podman-compose up -d
-```
-
-## Running on the host machine
-
-To run on the host machine, first, as before, set up your environment variables
-by copying `example.env` to `.env` and editing the values as appropriate.
-
-```bash
-npm run start
-```
-
-Note that emails may not work locally without further setup. These instructions
-are of course woefully incomplete.