simpleweb_peertube
Go to file
southerntofu e495305434 Proper journalctl-friendly logger 2021-09-06 19:03:45 +00:00
static More avatar fallbacks 2021-08-01 16:43:02 +02:00
templates Also display date on single video page 2021-08-04 21:17:35 +02:00
.editorconfig Add .editorconfig 2021-01-21 20:51:05 +03:00
.gitignore Ignore subscriptions in repository 2021-08-01 11:54:45 +02:00
LICENSE Initial commit 2021-01-17 16:03:40 +01:00
README.md Add link to Todo-handler 2021-07-30 21:23:16 +02:00
TODO Add support for viewing Accounts and Video Channels 2021-01-21 23:26:31 +01:00
doesnt_work Update doesnt_work 2021-01-22 11:57:11 +01:00
main.py Proper journalctl-friendly logger 2021-09-06 19:03:45 +00:00
opensearch.xml Serve /opensearch.xml to add SimpleerTube as search engine to your webbrowser 2021-07-31 11:23:49 +02:00
peertube.py Fix account subscriptions debug print 2021-08-04 21:23:26 +02:00
utils.py First attempt at multiple pages of homepage subscriptions 2021-08-04 20:54:23 +02:00

README.md

SimpleerTube

Active Known Instances:

If you want to add your instance to this list, message us on IRC (#simple-web on irc.libera.chat).

For the rest of the documentation, https://simpleertube.metalune.xyz will be used as an example instance.

If you want to visit any page from your PeerTube instance of choice in SimpleerTube, just prepend https://simpleertube.metalune.xyz to the URL. So, https://videos.lukesmith.xyz/accounts/luke becomes https://simpleertube.metalune.xyz/videos.lukesmith.xyz/accounts/luke.

If you visit the main page, you can search globally (it uses Sepia Search in the backend).

Setup

You need to setup a few dependencies first, usually using pip (sudo apt install python3-pip on Debian):

$ sudo pip3 install quart bs4 html2text lxml

Note: If there are other dependencies that are not packaged with your system, please report them to us so they can be added to this README.

Now you can run a development environment like so:

$ python3 main.py # Starts on localhost:5000
$ python3 main.py 192.168.42.2 # Starts on 192.168.42.2:5000
$ python3 main.py 7171 # Starts on localhost:7171
$ python3 main.py 192.168.42.2 7171 # Starts on 192.168.42.2:7171
$ python3 main.py ::1 7171 # Also works with IPv6 addresses

It is strongly disrecommended to run the production using this command. Instead, please refer to the Quart deployment docs.

TODO-Tracker

We have our TODO-Tracker hosted on todo.sr.ht: SimpleerTube

License

This software is distributed under the AGPLv3 license. You can find a copy in the LICENSE file.