/WebBot

Web-Version of ChatBot with Django

Primary LanguagePython

Setup

git clone https://github.com/ahmadfaizalbh/WebBot.git
cd WebBot
pip install -r requirements.txt

Initialize

python manage.py makemigrations
python manage.py migrate

Create Super User

python manage.py createsuperuser

Run server

python manage.py runserver

In Brouser

open http://localhost:8000

Live Replit

https://ChatBotAI-Demo.ahmadfaizal.repl.co

Note:-

update CONTACT_FROM and CONTACT_TO in settings.py

CONTACT_FROM = 'from_email@domain.com'
CONTACT_TO = ['to_email@domain.com']