Skip to content

Commit d07240b

Browse files
Update README.md
1 parent 2f2a0c5 commit d07240b

File tree

1 file changed

+21
-2
lines changed

1 file changed

+21
-2
lines changed

README.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,20 +53,29 @@ Braggi is a Python based Contextual Chatbot Framework, which hopes to integrate
5353
# Features Planned
5454
- [ ] A parser to extract information from messages (Prices, Dates, Messages, Names).
5555
- [x] restful implimentation in Django.
56-
- [ ] ReactJs front-end with built in WebViews.
56+
- [x] ReactJS front-end with built in WebViews.
5757
- [ ] Stand alone editor to prepare scripts and customize the bot.
5858
- [ ] GAN based replies 🤔?
5959
- [ ] And lots more...
6060

6161
# Setup
6262
Install the following modules if you don't have them already
63+
#### Python(3.6)
6364
```shell
6465
pip install tensorflow
6566
pip install tflearn
6667
pip install nltk
6768
pip install django-rest-framework
6869
pip install httpie
6970
```
71+
#### node.js
72+
[Download node.js](https://nodejs.org/en/download/)
73+
```shell
74+
npm install react
75+
npm install express
76+
npm install axios
77+
npm install bootstrap
78+
```
7079

7180
# Running the Code
7281
Execute Run.py
@@ -76,12 +85,22 @@ python Run.py
7685

7786
For Django Rest Framework based Implimentation
7887
```shell
79-
cd \braggi_rest_api
88+
cd \braggi-rest-api\braggi_rest_api
8089
python manage.py runserver
8190
http http://127.0.0.1:8000/braggi/
8291
```
8392

93+
For the Frontend
94+
```shell
95+
cd \braggi-reactjs-frontend
96+
npm start
97+
98+
cd \backend
99+
node app.js
100+
```
101+
84102
> Open http://127.0.0.1:8000/braggi/ to view the data.
103+
> Open http://127.0.0.1:3000 to view the chat UI
85104
86105
# Feedback / FAQs / Contact
87106
Drop me a message anywhere on the links down below 😄

0 commit comments

Comments
 (0)