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 IChatBoxpython3 -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate`pip install -r requirements.txtCreate a .env file in the root of your project, and define your environment-specific variables such as:
SECRET_KEY=your-secret-key
DEBUG=Truepython manage.py migratepython manage.py createsuperuserpython manage.py runserverOpen your browser and go to http://localhost:8000/ to see the IChatBox in action.