PlanX is a collaborative platform that allows users to create rooms and engage in discussions on various topics through real-time text chat.
- 🔹 Create & Join Rooms – Users can create rooms for discussions and allow others to join.
- 💬 Real-Time Chat – Text-based chat system for seamless communication.
- 🎨 Custom UI – Interactive design with smooth scrolling and enhanced user experience.
- 🌐 User-Friendly Interface – Intuitive and responsive design for easy navigation.
git clone https://github.com/YOUR-USERNAME/PlanX.git
cd PlanX
python -m venv env
source env/bin/activate # On Windows, use: env\Scripts\activate
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
Now, open `` in your browser to access PlanX.
- Create a Room – Click on "Create" to start a new discussion.
- Join a Room – Click "Join" and enter a room name to participate.
- Chat – Send messages in real time within the room.
- Backend: Django, Django REST Framework
- Frontend: HTML, CSS, JavaScript
- Database: SQLite (default, can be changed to PostgreSQL/MySQL)
- Fork the repository.
- Create a new branch (
git checkout -b feature-branch
). - Commit your changes (
git commit -m "Added new feature"
). - Push to your fork (
git push origin feature-branch
). - Create a Pull Request.