chat-me is a Test Chat application built on Django.
- Python 3.x
- Django
- Django Channels
- Redis (for WebSocket support)
- Other dependencies (specified in requirements.txt)
- Clone the repository:
git clone https://github.com/your-username/chat-me.git
- Create a virtual environment:
python3 -m venv env
- Activate the virtual environment:
source env/bin/activate
- Install the dependencies:
pip install -r requirements.txt
- Run the migrations:
python manage.py migrate
- Start the development server:
python manage.py runserver
- Access the application in your web browser at
http://localhost:8000
- Register a new account or login with an existing account
- Start chatting with other users
If you'd like to contribute to this project, please follow these steps:
- Fork the repository
- Create a new branch:
git checkout -b feature/your-feature-name
- Make your changes and commit them:
git commit -am 'Add some feature'
- Push the changes to your branch:
git push origin feature/your-feature-name
- Submit a pull request
This project is licensed under the MIT License. See the LICENSE file for more details.