Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rennerocha/mediafeed

Web application to help categorize and aggregate subscriptions of media channels for easy access. (working only with Youtube channels at this moment)
https://github.com/rennerocha/mediafeed

django hacktoberfest media subscriptions youtube

Last synced: about 2 months ago
JSON representation

Web application to help categorize and aggregate subscriptions of media channels for easy access. (working only with Youtube channels at this moment)

Awesome Lists containing this project

README

        

This application allows you to organize your media subscriptions (currently only YouTube channels)
into categories to make it easier to access the content you want.

Main requirements
=================

- `Python 3.7+ `_
- `Poetry `_ as dependency manager
- `Docker `_ for deployment

Development
===========

On repository root directory use the following command to install all dependencies and prepare your development environment. It will install all packages needed for application execution plus libraries used for development and testing.

.. code-block:: bash

poetry install

Production
==========

To orchestrate all containers we are using `docker-compose `_ and a few environment variables containing everything needed to configure the project to run.

Configuration files are:

- **docker-compose.yml**: contains the general container configurations that are suitable for development and production
- **docker-compose-prod.yml**: contains an extra service (nginx reverse proxy) and overrides some existing services. You need to change this file before starting the containers
- **.env**: contains environment variables shared by the services

After updating **docker-compose-prod.yml** doc and **.env** file, start everything with the following:

.. code:: shell

docker-compose -f docker-compose.yml -f docker-compose-prod.yml up -d