forked from Archives/Athou_commafeed
23 lines
691 B
Markdown
23 lines
691 B
Markdown
# `garrettmills/commafeed`
|
|
|
|
This is my personal fork of `Athou/commafeed` with some tweaks:
|
|
|
|
- "Infrequent" tab - like "All" but limits to blogs w/ an average post interval greater than a user-configurable number of days
|
|
- User preference to disable the swipe-to-open-menu gesture on mobile
|
|
|
|
## Building
|
|
|
|
Use `gmfork-build-docker.sh` to build the JVM Docker image for `linux/amd64`:
|
|
|
|
You can use the `DB_VARIANT` env var to change which DB the image builds with. By default, it builds the `postgresql` variant.
|
|
|
|
```sh
|
|
DOCKER_REGISTRY=myregistry.example.com DB_VARIANT=h2 ./gmfork-build-docker.sh
|
|
```
|
|
|
|
To run locally:
|
|
|
|
```sh
|
|
docker run -p 8082:8082 $DOCKER_REGISTRY/commafeed-fork:latest
|
|
```
|