{"id":19190188,"url":"https://github.com/macktireh/clone-twitter-backend","last_synced_at":"2025-05-08T04:49:42.557Z","repository":{"id":44368559,"uuid":"508815868","full_name":"Macktireh/clone-twitter-backend","owner":"Macktireh","description":"This project is a backend implementation of a Twitter clone using Django, Django REST framework, Django Channels, PostgreSQL, Redis, and Cloudinary. This project includes a wide range of features, including authentication, tweet management, likes, retweets, notifications, real-time chat, and more.","archived":false,"fork":false,"pushed_at":"2024-08-10T17:22:39.000Z","size":588,"stargazers_count":9,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-08T04:49:36.511Z","etag":null,"topics":["api-rest","clone-twitter","cloudinary","django","django-rest-framework","docker","postgresql","python","redis","swagger"],"latest_commit_sha":null,"homepage":"https://clone-twitter-backend.onrender.com","language":"Python","has_issues":true,"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/Macktireh.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}},"created_at":"2022-06-29T19:09:43.000Z","updated_at":"2025-05-03T10:00:47.000Z","dependencies_parsed_at":"2023-02-15T16:15:56.437Z","dependency_job_id":"ad5518c7-d511-4b18-ae41-a4ce415d3b23","html_url":"https://github.com/Macktireh/clone-twitter-backend","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Macktireh%2Fclone-twitter-backend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Macktireh%2Fclone-twitter-backend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Macktireh%2Fclone-twitter-backend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Macktireh%2Fclone-twitter-backend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Macktireh","download_url":"https://codeload.github.com/Macktireh/clone-twitter-backend/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253002841,"owners_count":21838637,"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","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":["api-rest","clone-twitter","cloudinary","django","django-rest-framework","docker","postgresql","python","redis","swagger"],"created_at":"2024-11-09T11:33:15.989Z","updated_at":"2025-05-08T04:49:42.531Z","avatar_url":"https://github.com/Macktireh.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Backend Twitter Clone\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://raw.githubusercontent.com/Macktireh/Media/main/images/clone-twitter-back.png\" alt=\"Home screen\" width=400\u003e\n  \u003cimg src=\"https://raw.githubusercontent.com/Macktireh/Media/main/images/clone-twitter-api1.png\" alt=\"Home screen\" width=400\u003e\n  \u003cimg src=\"https://raw.githubusercontent.com/Macktireh/Media/main/images/clone-twitter-api2.png\" alt=\"Home screen\" width=400\u003e\n  \u003cimg src=\"https://raw.githubusercontent.com/Macktireh/Media/main/images/clone-twitter-api3.png\" alt=\"Home screen\" width=400\u003e\n\u003c/p\u003e\n\n## Table of Contents\n- [Description](#description)\n- [Features](#features)\n- [Prerequisites](#prerequisites)\n- [Getting Started](#getting-started)\n- [Installation with Docker](#installation-with-docker)\n- [Installation without Docker](#installation-without-docker)\n\n\n## Description\n\nThis project is a backend implementation of a Twitter clone using Django, Django REST framework, Django Channels, PostgreSQL, Redis, and Cloudinary. This project includes a wide range of features, including authentication, tweet management, likes, retweets, notifications, real-time chat, and more. This repository contains the backend code. The frontend, built with React, Redux, and other technologies, can be found [clone-twitter-frontend](https://github.com/Macktireh/clone-twitter-frontend).\n\n\n## Features\n\n- **Authentication**: Signup, email activation, login, password reset request, password reset, password change, JWT token refresh, JWT token verification, and logout.\n- **Social Auth**: Login with Google.\n- **Tweets**: Create, read, update, and delete tweets.\n- **Likes**: Manage likes on tweets.\n- **Bookmark**: Manage bookmarked tweets.\n- **Retweets**: Manage retweets.\n- **Retweet Likes**: Manage likes on retweets.\n- **User Management**: Get and update user information, manage following and followers.\n- **Notifications**: Real-time notification system.\n- **Real-Time Chat**: Real-time chat feature.\n\n\n## Prerequisites\n\n- Python 3.12+\n- Git\n- Docker\n- PostgreSQL\n- Redis\n- Cloudinary\n\n\n## Getting Started\n\n### Common Setup\n\n1. Clone the repository:\n\n```sh\ngit clone https://github.com/Macktireh/clone-twitter-backend.git\n```\n```sh\ncd clone-twitter-backend\n```\n\n2. Configure environment variables: Create a `.env` file based on the `.env.example` file and set your environment variables.\n\n### Installation with Docker\n\nBuild and start the Docker containers:\n\n```bash\ndocker-compose up --build\n```\n\n### Installation without Docker\n\n1. Create and activate a virtual environment:\n\n```bash\npython -m venv venv\n```\n```bash\nsource venv/bin/activate  # On Windows: venv\\Scripts\\activate\n```\n\n2. Install dependencies:\n\n```bash\npip install -r requirements.txt\n```\n5. Apply database migrations:\n\n```bash\npython manage.py migrate\n```\n\n6. Start the development server:\n\n```bash\npython manage.py runserver\n```\n\nYour Twitter clone backend should now be up and running. 🎉\nThe application will be accessible at [http://localhost:8000](http://localhost:8000).\n\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmacktireh%2Fclone-twitter-backend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmacktireh%2Fclone-twitter-backend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmacktireh%2Fclone-twitter-backend/lists"}