{"id":26731592,"url":"https://github.com/tobiasreize/videoflix_backend","last_synced_at":"2026-04-28T12:03:59.323Z","repository":{"id":280774553,"uuid":"942708277","full_name":"TobiasReize/videoflix_backend","owner":"TobiasReize","description":"Video streaming platform (demo project)","archived":false,"fork":false,"pushed_at":"2025-07-23T11:19:34.000Z","size":135,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-10-08T01:24:59.746Z","etag":null,"topics":["django","django-rest-framework","django-rq","ffmpeg","postgresql","python","redis-cache"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TobiasReize.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-04T14:45:50.000Z","updated_at":"2025-07-23T11:19:38.000Z","dependencies_parsed_at":"2025-03-05T08:36:11.776Z","dependency_job_id":"cc9b5dec-9b56-44fb-91bb-4c08dcf2a859","html_url":"https://github.com/TobiasReize/videoflix_backend","commit_stats":null,"previous_names":["tobiasreize/videoflix_backend"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TobiasReize/videoflix_backend","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TobiasReize%2Fvideoflix_backend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TobiasReize%2Fvideoflix_backend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TobiasReize%2Fvideoflix_backend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TobiasReize%2Fvideoflix_backend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TobiasReize","download_url":"https://codeload.github.com/TobiasReize/videoflix_backend/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TobiasReize%2Fvideoflix_backend/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32379629,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T11:25:28.583Z","status":"ssl_error","status_checked_at":"2026-04-28T11:25:05.435Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["django","django-rest-framework","django-rq","ffmpeg","postgresql","python","redis-cache"],"created_at":"2025-03-28T00:25:46.674Z","updated_at":"2026-04-28T12:03:59.291Z","avatar_url":"https://github.com/TobiasReize.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Videoflix Backend\n\n## A Django-based backend project for a video streaming platform.\u003cbr/\u003e\nVideoflix uses Django and Django Restframework (DRF) to provide individual endpoints, authentication and permissions. PostgreSQL as database and Redis for Caching-Layer. FFmpeg including Django-RQ is used to convert the videos.\n\nThis project is part of the videoflix_frontend.\u003cbr/\u003e\n\n## Prerequisites:\n`Python version \u003e= 3.10`\n\n## How to install this repository on a Linux server or WSL:\n\n1. Clone this repository:\n```\n    git clone \u003cGitHub repository link\u003e\n```\n\n2. Create a virtual environment (in the project folder):\n```\n    python3 -m venv env_lin\n```\n\n3. Install the dependencies:\n```\n    activate the virtual environment: source env_lin/bin/activate\n    pip install -r requirements.txt\n```\n\n4. Install packages:\n```\n    sudo apt-get install ffmpeg\n    sudo apt install redis-server\n    sudo apt install postgresql postgresql-contrib\n```\n(--\u003e edit password in redis.conf)\u003c/br\u003e\n(--\u003e set up postgres database)\n\n5. Set the environment variables:\n```\n    rename the .env-template file to .env and fill out the environment variables\n```\n\n6. Run background processes:\n```\n    sudo service redis-server start\n    sudo service postgresql start\n    python manage.py rqworker\n```\n\n7. Apply migrations:\n```\n    python manage.py makemigrations\n    python manage.py migrate\n```\n\n8. Create a Superuser/ Admin: (only superuser can add videos)\n```\n    python manage.py createsuperuser\n```\n\n9. Create static files:\n```\n    python manage.py collectstatic\n```\n\n10. Run the local development server (on path: 127.0.0.1:8000):\n```\n    python manage.py runserver\n```\n\n11. Start videoflix_frontend:\u003cbr/\u003e\nclone the repository and run the liveserver on path 127.0.0.1:4200\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftobiasreize%2Fvideoflix_backend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftobiasreize%2Fvideoflix_backend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftobiasreize%2Fvideoflix_backend/lists"}