Compare commits
No commits in common. "0e91eef0e80f051873c2e28e4a30c2a247d9683a" and "5e653407f201a4fcc53f5df5a5c460a2521c64f8" have entirely different histories.
0e91eef0e8
...
5e653407f2
1
Justfile
1
Justfile
|
@ -58,4 +58,3 @@ publish-release-binaries tag: build-release-static
|
||||||
--fail \
|
--fail \
|
||||||
--upload-file target/aarch64-unknown-linux-musl/release/otter \
|
--upload-file target/aarch64-unknown-linux-musl/release/otter \
|
||||||
https://git.rustybever.be/api/packages/Chewing_Bever/generic/otter/"{{ tag }}"/otter-linux-arm64
|
https://git.rustybever.be/api/packages/Chewing_Bever/generic/otter/"{{ tag }}"/otter-linux-arm64
|
||||||
just docs/publish
|
|
||||||
|
|
|
@ -2,4 +2,3 @@ public/
|
||||||
*.lock
|
*.lock
|
||||||
*.tar.gz
|
*.tar.gz
|
||||||
/resources/_gen/
|
/resources/_gen/
|
||||||
auth.txt
|
|
||||||
|
|
|
@ -8,13 +8,5 @@ package: build
|
||||||
--file ../docs.tar.gz \
|
--file ../docs.tar.gz \
|
||||||
*
|
*
|
||||||
|
|
||||||
publish: package
|
|
||||||
curl \
|
|
||||||
-XPOST \
|
|
||||||
--fail \
|
|
||||||
-H @./auth.txt \
|
|
||||||
-T docs.tar.gz \
|
|
||||||
https://rustybever.be/docs/otter
|
|
||||||
|
|
||||||
serve:
|
serve:
|
||||||
hugo serve --buildDrafts
|
hugo serve --buildDrafts
|
||||||
|
|
|
@ -1,32 +1 @@
|
||||||
# Otter
|
Welcome!
|
||||||
|
|
||||||
Otter is a standalone implementation of the [Gpodder.net
|
|
||||||
API](https://gpoddernet.readthedocs.io/en/latest/). Its goal is to be a
|
|
||||||
lightweight self-hostable alternative to [gpodder.net](https://gpodder.net) for
|
|
||||||
synchronizing podcast subscriptions and episode states between compatible
|
|
||||||
clients.
|
|
||||||
|
|
||||||
{{% columns %}}
|
|
||||||
## Easy to install
|
|
||||||
|
|
||||||
Otter is distributed as a single statically compiled binary, allowing it to be
|
|
||||||
used in any Linux-based context, be it as a Systemd service or in a Docker
|
|
||||||
container.
|
|
||||||
|
|
||||||
<--->
|
|
||||||
|
|
||||||
## Simple to configure
|
|
||||||
|
|
||||||
Only a small amount of configuration is required to get Otter up and running,
|
|
||||||
all of which can be done from a config file, environment variables, or CLI
|
|
||||||
arguments.
|
|
||||||
|
|
||||||
<--->
|
|
||||||
|
|
||||||
## Multi-user
|
|
||||||
|
|
||||||
Otter supports multiple users and provides functionality for making your server
|
|
||||||
either public or private, along with easy ways of inviting new users to your
|
|
||||||
server. Host it for yourself, your friends, or start a public instance!
|
|
||||||
|
|
||||||
{{% /columns %}}
|
|
||||||
|
|
|
@ -1,7 +1,4 @@
|
||||||
baseURL = 'https://rustybever.be/docs/otter/'
|
baseURL = 'https://example.org/'
|
||||||
languageCode = 'en-us'
|
languageCode = 'en-us'
|
||||||
title = 'Otter'
|
title = 'Otter'
|
||||||
theme = "hugo-book"
|
theme = "hugo-book"
|
||||||
|
|
||||||
[markup.goldmark.renderer]
|
|
||||||
unsafe = true
|
|
||||||
|
|
Loading…
Reference in New Issue