RentFreeMedia / rentfreemedia

Media distribution without the platform markup. Home of the free/open source Rent Free Media distribution of Django + Wagtail.
https://rentfreemedia.readthedocs.io
GNU Affero General Public License v3.0
74 stars 7 forks source link

Documentation Status

Rent Free Media

RentFree Media is a media distribution framework built on Django and Wagtail. With it you can publish either public or premium / subscription-based content similar to the features provided in services such as Patreon, Apple Podcasts, and Substack.

It processes subscription payments via Stripe, and in addition to serving premium content from web pages, makes authenticated RSS feeds for podcasts and premium written articles, like so...

subscribe-2

...

subscribe-3

Need Help? Have Questions?

Feel free to post a discussion for questions or an issue if you have trouble, contact info is also available in my git profile if you'd like to hire me to help with deployment or customization, or just talk for a few minutes about how you might use the code, I'm happy to help!

When ready to give this all a try, please read the docs for instructions on its usage.

Summary of Features

Thanks

Particular thanks not only to the Wagtail core developers and the developers of all of the third party libraries we use, but also specifically to CodeRedCorp for open-sourcing their Wagtail projects. It is from their examples that most of the base-level page design of this project is derived. And also particularly to Kalob Taulien for his wonderful Wagtail development tutorials.

Things you will need

  1. A web host (virtual server or bare metal)
  2. A Stripe account, for payment processing
  3. An email service for invoices, user registration confirmation, and other such typical things
  4. A storage service such as Digital Ocean Spaces, AWS S3, Backblaze, etc for storing your content
  5. A laptop / desktop to run the deployment scripts on

That's it! After filling in the blanks you will be your own premium media distribution service, without the (egregious) fees of the above mentioned publishing services.

Deployment

Serving content to paying customers is not trivial to do securely and robustly. Your own Nginx installation is required to do this, as each request for premium content must first be authenticated, and then fetched from storage and routed back to the user. We cache media files on the server and thus the storage service is "just storage" for the Nginx reverse proxy in front of Django to serve end users through. Media files are cached by Nginx on the server's local disk to minimize traffic between the front end and the back end.

Ansible scripts are provided in the ansible folder for automated deployment to Digital Ocean, which as a cloud service is particularly well suited to host this project because of their generous download bandwidth pricing.

If you choose to deploy the project manually, refer to the Ansible templates (ansible / includes / webserver / templates / nginx and ansible / includes / webserver / templates / systemd) for Nginx and Gunicorn configuration, sans the Ansible variables.

Let's consider the math in terms of a Digital Ocean deployment:

Presume that you have 20,000 paying customers who download your weekly (4 times a month) premium-user podcast which weighs in at 100mb for a one hour long MP3 file. Presume also that on average, each of your 20,000 paying customers downloads the episodes on three different devices.

20,000 x 3 x 4 = 240,000 downloads a month

240,000 x 100mb = 24,000,000 megabytes per month downloaded

24,000,000 mb / 1024 = 23,437 gigabytes

23,437 x $0.01 per gigabyte = $234.38

Even if we don't manage to convert the world with this project, we would hope to impress upon people that serving media is not worth 10% or 18% or 25% or 30% of your gross receipts, as other media distribution "services" seem to think by virtue of their pricing. The cloud service seems to think that it's worth $0.01 per gigabyte, and you should be looking to pay accordingly for this sort of thing.

If you use Digital Ocean, signing up with our referral link via the button below would be appreciated! You will get $100 credit as a new customer, and we'll get a referral credit after your first paid invoice.

DigitalOcean Referral Badge

License

AGPL, because you are free to use this code as you see fit to publish your own content. Or even provide custom code based on this to others for a fee, if you are a developer and wish to work as a media hosting consultancy, for example, provided that you also release the source code you have added or changed. What you're not free to do is use this repository's original code as a basis for a closed-source "service"... like Patreon or Substack. The point of all this is to have less of them, not enable more of them.

Contributing

PRs are welcome! Please discuss new features you would like to see in the discussions area so that we can keep the issues forum prioritized for bug reports. The Needs / Wants thread atop the issues forum is an up-to-date list of priorities for the future.

As Wagtail is a CMS that sits on top of, in front of, Django... feature proposals should integrate with Wagtail. While it's possible to do anything in code, doing it with future maintainability in mind is also a big consideration. Would-be contributors and custom solution developers would be wise to not only thoroughly read the Wagtail docs, but also read the Wagtail code itself.

The code should work with the Django development server, with some caveats:

Local Development

To run the project locally:

  1. Download and unzip the repo or a release. The "main" branch should always be stable, the "dev" branch should be the most recent.
  2. Edit env in the root of the rentfree directory and provide the required settings, then save the edited file as .env. Remote storage options are not required for development mode, it will serve the media files and static files from your local machine. At minimum, specify email server info, stripe account sandbox public/private key and webhook secret, the base_url of 127.0.0.1, and the human readable site name.
  3. Make a virtual environment (python3 -m venv ~/rentfreelibs)
  4. Activate the virtual environment (~/rentfreelibs/bin/activate)
  5. Edit manage.py and set the settings target to "dev" instead of "prod"
  6. Edit website/wsgi.py and set the settings target to "dev" instead of "prod"
  7. pip install -r requirements.txt
  8. pip install django-debug-toolbar
  9. python3 manage.py makemigrations && python3 manage.py migrate
  10. python3 manage.py createsuperuser
  11. python3 manage.py runserver

You should now be up and running on http://127.0.0.1:8000