Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vkosuri/chatterbot-live-example
[Maintainer Required] :blue_book: Notes to deploy chatterbot on Heroku cloud :cloud:
https://github.com/vkosuri/chatterbot-live-example
chatterbot chatterbot-cloud chatterbot-live django heroku herokuapp
Last synced: 4 days ago
JSON representation
[Maintainer Required] :blue_book: Notes to deploy chatterbot on Heroku cloud :cloud:
- Host: GitHub
- URL: https://github.com/vkosuri/chatterbot-live-example
- Owner: vkosuri
- License: bsd-3-clause
- Created: 2016-12-11T22:24:42.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2021-08-28T02:31:32.000Z (about 3 years ago)
- Last Synced: 2024-10-30T01:59:11.253Z (14 days ago)
- Topics: chatterbot, chatterbot-cloud, chatterbot-live, django, heroku, herokuapp
- Language: Python
- Homepage: https://chatterbot-live-example.herokuapp.com/
- Size: 591 KB
- Stars: 23
- Watchers: 4
- Forks: 24
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: license.md
Awesome Lists containing this project
README
# ChatterBot Django Live Example
This is an example Django app that shows how to create a simple chat bot web
app using [Django](https://ww.djangoproject.com) and [ChatterBot](https://github.com/gunthercox/ChatterBot).## Documentation
Start the Django app by running
``` Bash
python manage.py runserver 0.0.0.0:8000
```If you running first time create chatterbot table before starting server
``` Bash
python manage.py migrate --run-syncdb
```Further documentation on getting set up with Django and ChatterBot can be found in the [ChatterBot documentation](http://chatterbiot.readthedocs.io/en/latest/django.html)
## Make migrations
``` Bash
python manage.py migrate
```
## Train your bot``` Bash
python manage.py train
```## Training Corpus Path
The chatterbot [corpus path](https://github.com/gunthercox/chatterbot-corpus/tree/master/chatterbot_corpus/data/english) can be found here.## Bot Django Settings
You could found Bot settings [here](./example_app/settings.py)``` Python
CHATTERBOT = {
'name': 'Heroku ChatterBot Example',
'logic_adapters' : [
"chatterbot.logic.BestMatch"
],
'trainer': 'chatterbot.trainers.ChatterBotCorpusTrainer',
'training_data': [
'chatterbot.corpus'
]
}
```If your app din't responding try to shift to postgresql, you will need install the ``dj_database_url`` package, to work nicely with PostgreSQL DB on heroku.
And also you will modify your settings.py as follows:
``` Python
import dj_database_url
DATABASES={'default': dj_database_url.config()}
```### Allowed Hosts
Include your address at the ALLOWED_HOSTS directives in settings.py - Just the domain, make sure that you will take the protocol and slashes from the stringfor example
``` Python
ALLOWED_HOSTS = ['127.0.0.1', 'chatterbot-live-example.herokuapp.com']
```## Deploying on Heroku
Before deploying Heroku you should install Heroku CLI on your machine, documentation found here https://devcenter.heroku.com/articles/heroku-cli
Here some of the steps launch your Django app with Heroku
### Build your app and run it locally
``` bash
pip install -r requirements.txt
Downloading/unpacking ...
...
Successfully installed Django dj-database-url dj-static django-toolbelt gunicorn psycopg2 static3
Cleaning up...
```### To run your application locally,
``` bash
heroku local web
11:48:19 web.1 | started with pid 36084
11:48:19 web.1 | 2014-07-17 11:48:19 [36084] [INFO] Starting gunicorn 19.0.0
11:48:19 web.1 | 2014-07-17 11:48:19 [36084] [INFO] Listening at: http://0.0.0.0:5000 (36084)
11:48:19 web.1 | 2014-07-17 11:48:19 [36084] [INFO] Using worker: sync
11:48:19 web.1 | 2014-07-17 11:48:19 [36087] [INFO] Booting worker with pid: 36087
```
Your app should now be running on http://localhost:5000/.### Deploy your application to Heroku
``` Bash
git add .git commit -m "Added a Procfile."
heroku login
Enter your Heroku credentials.
...heroku create
Creating intense-falls-9163... done, stack is cedar
http://intense-falls-9163.herokuapp.com/ | [email protected]:intense-falls-9163.git
Git remote heroku addedgit push heroku master
...
-----> Python app detected
...
-----> Launching... done, v7
https://intense-falls-9163.herokuapp.com/ deployed to Heroku
```A more detailed information can be found here https://devcenter.heroku.com/articles/deploying-python
## LICENSE
ChatterBot Django Live Example is licensed under [BSD 3-clause](./license.md)