Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 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)
- Host: GitHub
- URL: https://github.com/rennerocha/mediafeed
- Owner: rennerocha
- License: mit
- Created: 2020-06-17T17:13:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-27T21:18:07.000Z (over 4 years ago)
- Last Synced: 2024-10-31T20:40:05.923Z (3 months ago)
- Topics: django, hacktoberfest, media, subscriptions, youtube
- Language: Python
- Homepage: http://mediafeed.cc/
- Size: 188 KB
- Stars: 16
- Watchers: 3
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
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 deploymentDevelopment
===========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 servicesAfter 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