{"id":28367430,"url":"https://github.com/sumit0ubey/rivora-webapp","last_synced_at":"2026-01-29T10:02:35.061Z","repository":{"id":295829620,"uuid":"990706126","full_name":"Sumit0ubey/RIVORA-WebApp","owner":"Sumit0ubey","description":"RIVORA is a powerful web app built with Django, merging the community-driven features of Discord with the content-focused layout of YouTube. Instead of videos, users create and interact through Rooms, each organized under specific topics. Every Room includes a comment section to enable vibrant, thread-based discussions.","archived":false,"fork":false,"pushed_at":"2025-10-28T16:53:45.000Z","size":83,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-28T18:33:45.175Z","etag":null,"topics":["css","django","html","javascript","postgresql","python","pythonanywhere"],"latest_commit_sha":null,"homepage":"https://devsumitcodepython.pythonanywhere.com/","language":"HTML","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/Sumit0ubey.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-05-26T14:05:09.000Z","updated_at":"2025-10-28T16:53:49.000Z","dependencies_parsed_at":"2025-05-27T15:48:47.538Z","dependency_job_id":"14f8a1b7-0483-4fc3-b357-6f741b8c7f21","html_url":"https://github.com/Sumit0ubey/RIVORA-WebApp","commit_stats":null,"previous_names":["sumit0ubey/rivora-webapp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Sumit0ubey/RIVORA-WebApp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sumit0ubey%2FRIVORA-WebApp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sumit0ubey%2FRIVORA-WebApp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sumit0ubey%2FRIVORA-WebApp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sumit0ubey%2FRIVORA-WebApp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Sumit0ubey","download_url":"https://codeload.github.com/Sumit0ubey/RIVORA-WebApp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sumit0ubey%2FRIVORA-WebApp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28875446,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T09:47:23.353Z","status":"ssl_error","status_checked_at":"2026-01-29T09:47:19.357Z","response_time":59,"last_error":"SSL_read: 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":["css","django","html","javascript","postgresql","python","pythonanywhere"],"created_at":"2025-05-29T01:09:44.565Z","updated_at":"2026-01-29T10:02:35.043Z","avatar_url":"https://github.com/Sumit0ubey.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rivora\n\n**Rivora** is a powerful web app built with Django, blending the community engagement features of Discord with the structured content experience of YouTube. Instead of videos, users create and interact through **Rooms**, which serve as topic-specific discussion hubs.\n\n---\n\n![RIVORA](https://github.com/user-attachments/assets/ebcf173c-e9c0-43f3-9b33-5f414fd497ea)\n\n---\n## 🧠 About\n\nRivora emphasizes meaningful conversations through structured topic-based **Rooms**. Each Room acts as a space for open discussion and collaboration. Users can:\n\n- Create and join topic-based Rooms\n- Engage in threaded, comment-style conversations\n- Discover trending and active Rooms by interest\n- Contribute to a growing, community-driven platform\n\n---\n\n## ⚙️ Tech Stack\n\n- **Backend**: Django\n- **Frontend**: HTML/CSS + Django templates\n- **Database**: PostgreSQL / SQLite\n- **Auth**: Django's built-in authentication system\n\n---\n\n## 🚀 Features\n\n- Room creation under customizable topics\n- Comment threads for every Room\n- User profiles and account management\n- Explore and search for active Rooms\n- Real-time updates\n\n---\n\n## 🧪 Installation\n\n1. **Clone the repository**:\n  ```bash\n  git clone https://github.com/Sumit0ubey/RIVORA-WebApp/\n  cd RivoraWebApp\n  ```\n\n2. **Create a virtual environment**:\n   ```bash\n   python -m venv venv\n   source venv/bin/activate  # On Windows: venv\\Scripts\\activate\n   ```\n\n3. **Install dependencies**:\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n4. **Apply migrations**:\n   ```bash\n   python manage.py migrate\n   ```\n\n5. **Run the development server**:\n   ```bash\n   python manage.py runserver\n   ```\n\n---\n## 📁 Project Structure\n\n```\nRIVORA-WebApp/\n├── Base/                 # Main Functionality\n├── contact/              # Support and contact\n├── RivoraWebApp/         # Project settings\n├── static/               # Static files (CSS, JS, images)\n├── templates/            # HTML templates\n├── manage.py             # Django management script\n├── requirements.txt      # Python dependencies\n└── README.md             # Project documentation\n```\n---\n\n## 🤝 Contributing\n\nContributions are welcome! Please fork the repository and submit a pull request for any enhancements or bug fixes.\n\n---\n\n## 📬 Contact\n\nFor any questions or feedback, feel free to reach out:\n\n- **Email**: [sumit.dubey20317@gmail.com](mailto:sumit.dubey20317@gmail.com)\n- **GitHub**: [Sumit0ubey](https://github.com/Sumit0ubey)\n\n---\n\n## 📄 License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsumit0ubey%2Frivora-webapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsumit0ubey%2Frivora-webapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsumit0ubey%2Frivora-webapp/lists"}