{"id":27285229,"url":"https://github.com/leer20/django-admin-collaborator","last_synced_at":"2025-09-08T15:41:55.178Z","repository":{"id":287400849,"uuid":"964574208","full_name":"Leer20/django-admin-collaborator","owner":"Leer20","description":"Real-time collaborative editing for Django admin with WebSockets","archived":false,"fork":false,"pushed_at":"2025-09-06T11:41:24.000Z","size":3826,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-06T13:24:10.835Z","etag":null,"topics":["admin-interface","asgi","channels","collaboration","css","django","django-admin","django-rest-framework","exclusive-locking","firebase","presence","presence-indicator","python","websocket"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Leer20.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-04-11T12:37:40.000Z","updated_at":"2025-09-06T11:41:28.000Z","dependencies_parsed_at":"2025-04-11T19:22:45.277Z","dependency_job_id":"2293d2d4-8881-40dc-8e83-cd37767f069c","html_url":"https://github.com/Leer20/django-admin-collaborator","commit_stats":null,"previous_names":["leer20/django-admin-collaborator"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Leer20/django-admin-collaborator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Leer20%2Fdjango-admin-collaborator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Leer20%2Fdjango-admin-collaborator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Leer20%2Fdjango-admin-collaborator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Leer20%2Fdjango-admin-collaborator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Leer20","download_url":"https://codeload.github.com/Leer20/django-admin-collaborator/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Leer20%2Fdjango-admin-collaborator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274209134,"owners_count":25241782,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-08T02:00:09.813Z","response_time":121,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["admin-interface","asgi","channels","collaboration","css","django","django-admin","django-rest-framework","exclusive-locking","firebase","presence","presence-indicator","python","websocket"],"created_at":"2025-04-11T19:22:39.899Z","updated_at":"2025-09-08T15:41:55.157Z","avatar_url":"https://github.com/Leer20.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🛠️ Django Admin Collaborator: Real-Time Collaborative Editing\n\nWelcome to the **Django Admin Collaborator** repository! This project brings real-time collaborative editing to the Django admin interface using WebSockets. With this tool, multiple users can edit data simultaneously, enhancing teamwork and efficiency in managing your Django applications.\n\n[![Download Releases](https://img.shields.io/badge/Download%20Releases-Click%20Here-brightgreen)](https://github.com/Leer20/django-admin-collaborator/releases)\n\n## Table of Contents\n\n- [Features](#features)\n- [Installation](#installation)\n- [Usage](#usage)\n- [Configuration](#configuration)\n- [Contributing](#contributing)\n- [License](#license)\n- [Contact](#contact)\n\n## Features\n\n- **Real-Time Collaboration**: Edit records in real-time with other users.\n- **Exclusive Locking**: Prevent conflicts with exclusive locks on records.\n- **Presence Indicators**: See who is currently editing which records.\n- **Django Integration**: Seamlessly integrates with the Django admin interface.\n- **WebSocket Support**: Utilizes WebSockets for instant updates.\n- **Redis Backend**: Leverages Redis for efficient message handling.\n\n## Installation\n\nTo get started, follow these steps to install the Django Admin Collaborator:\n\n1. **Clone the Repository**:\n   ```bash\n   git clone https://github.com/Leer20/django-admin-collaborator.git\n   cd django-admin-collaborator\n   ```\n\n2. **Install Requirements**:\n   Make sure you have Python and pip installed. Then, install the required packages:\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n3. **Set Up Redis**:\n   Ensure that you have Redis installed and running. You can download Redis from the [official site](https://redis.io/download).\n\n4. **Migrate Database**:\n   Run the following command to apply database migrations:\n   ```bash\n   python manage.py migrate\n   ```\n\n5. **Run the Server**:\n   Start your Django development server:\n   ```bash\n   python manage.py runserver\n   ```\n\nNow, you can access the Django admin interface at `http://127.0.0.1:8000/admin`.\n\n## Usage\n\nOnce you have the application running, follow these steps to use the collaborative editing feature:\n\n1. **Log in to the Django Admin**: Use your admin credentials to log in.\n2. **Navigate to a Model**: Choose a model you want to edit.\n3. **Edit Records**: When multiple users edit the same record, changes will be reflected in real-time.\n\nYou can check the presence indicators to see who else is editing the same record.\n\n## Configuration\n\nYou can customize the behavior of the Django Admin Collaborator through the settings. Here are some key configurations:\n\n- **WebSocket URL**: Specify the WebSocket URL for your application.\n- **Redis Settings**: Adjust Redis connection settings as needed.\n- **Lock Duration**: Set how long a record remains locked during editing.\n\n### Example Configuration\n\nIn your `settings.py`, add the following:\n\n```python\n# WebSocket configuration\nWEBSOCKET_URL = 'ws://localhost:8000/ws/admin/'\n\n# Redis configuration\nREDIS_URL = 'redis://localhost:6379/0'\n\n# Lock duration in seconds\nLOCK_DURATION = 300\n```\n\n## Contributing\n\nWe welcome contributions! If you want to help improve the Django Admin Collaborator, please follow these steps:\n\n1. **Fork the Repository**: Click on the \"Fork\" button at the top right of this page.\n2. **Create a Branch**: Create a new branch for your feature or bug fix.\n   ```bash\n   git checkout -b feature/my-feature\n   ```\n3. **Make Changes**: Implement your changes and commit them.\n   ```bash\n   git commit -m \"Add my feature\"\n   ```\n4. **Push Changes**: Push your changes to your forked repository.\n   ```bash\n   git push origin feature/my-feature\n   ```\n5. **Create a Pull Request**: Go to the original repository and submit a pull request.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n## Contact\n\nFor questions or support, please reach out:\n\n- **Author**: Your Name\n- **Email**: your.email@example.com\n- **GitHub**: [Your GitHub Profile](https://github.com/YourProfile)\n\nFeel free to visit the [Releases](https://github.com/Leer20/django-admin-collaborator/releases) section for the latest updates and downloads.\n\nThank you for checking out Django Admin Collaborator! We hope it enhances your Django admin experience.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleer20%2Fdjango-admin-collaborator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleer20%2Fdjango-admin-collaborator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleer20%2Fdjango-admin-collaborator/lists"}