This project is a chat application built using Django, designed to facilitate communication among influencers. Below are the details regarding the structure and functionality of the application.
influencermeeting
├── chat
│ ├── migrations
│ ├── templates
│ │ └── chat
│ │ └── index.html
│ ├── __init__.py
│ ├── admin.py
│ ├── apps.py
│ ├── models.py
│ ├── tests.py
│ └── views.py
├── influencermeeting
│ ├── __init__.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── manage.py
└── README.md
- Real-time Chat: Users can send and receive messages in real-time.
- User Authentication: Secure login and registration for users.
- Admin Interface: Manage chat data through the Django admin panel.
-
Clone the repository:
git clone <repository-url> cd influencermeeting
-
Create a virtual environment:
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
-
Install the required packages:
pip install -r requirements.txt
-
Apply migrations:
python manage.py migrate
-
Run the development server:
python manage.py runserver
- Navigate to
http://127.0.0.1:8000/to access the chat application. - Use the provided interface to log in or register and start chatting.
Contributions are welcome! Please open an issue or submit a pull request for any enhancements or bug fixes.
This project is licensed under the MIT License. See the LICENSE file for details.