IChatBox is a user-friendly chat solution designed for easy integration into existing websites. It offers seamless real-time communication, is highly customizable, and enhances user engagement with minimal setup. Ideal for adding interactive features to any site.
git clone https://github.com/yourusername/IChatBox.git
cd IChatBox
python3 -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate`
pip install -r requirements.txt
Create a .env file in the root of your project, and define your environment-specific variables such as:
SECRET_KEY=your-secret-key
DEBUG=True
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
Open your browser and go to http://localhost:8000/ to see the IChatBox in action.