Prep docs for branch move

This commit is contained in:
Griatch 2022-12-03 13:44:11 +01:00
parent e2b4a9cf19
commit f468005a34
16 changed files with 39 additions and 56 deletions

View file

@ -27,16 +27,16 @@ You can connect RSS to any Evennia channel, but for testing, let's set up a new
@ccreate rss = RSS feeds are echoed to this channel!
Let's connect Evennia's code-update feed to this channel. The RSS url for evennia updates is
`https://github.com/evennia/evennia/commits/master.atom`, so let's add that:
`https://github.com/evennia/evennia/commits/main.atom`, so let's add that:
@rss2chan rss = https://github.com/evennia/evennia/commits/master.atom
@rss2chan rss = https://github.com/evennia/evennia/commits/main.atom
That's it, really. New Evennia updates will now show up as a one-line title and link in the channel.
Give the `@rss2chan` command on its own to show all connections. To remove a feed from a channel,
you specify the connection again (use the command to see it in the list) but add the `/delete`
switch:
@rss2chan/delete rss = https://github.com/evennia/evennia/commits/master.atom
@rss2chan/delete rss = https://github.com/evennia/evennia/commits/main.atom
You can connect any number of RSS feeds to a channel this way. You could also connect them to the
same channels as [Channels-to-IRC](./Channels-to-IRC.md) to have the feed echo to external chat channels as well.

View file

@ -160,7 +160,7 @@ containers](https://docs.docker.com/engine/tutorials/dockervolumes/) page.
### What if I Don't Want "LATEST"?
A new `evennia/evennia` image is built automatically whenever there is a new commit to the `master` branch of Evennia. It is possible to create your own custom evennia base docker image based on any arbitrary commit.
A new `evennia/evennia` image is built automatically whenever there is a new commit to the `main` branch of Evennia. It is possible to create your own custom evennia base docker image based on any arbitrary commit.
1. Use git tools to checkout the commit that you want to base your image upon. (In the example
below, we're checking out commit a8oc3d5b.)