No Description

Mohidul Islam 937fc49e04 separate positive and negative reviews in manager dashboard 4 years ago
analytics 8f60b8c5ae Chnage send mail to multiple location manager and add cc mails 4 years ago
dashboard bb1f05806a Change permission class 4 years ago
facebook_app 63179f4c3a change admin fields 4 years ago
gauth 921dff18b3 added manager app 4 years ago
manager 937fc49e04 separate positive and negative reviews in manager dashboard 4 years ago
media cf6c505575 added word cloud to manager review list page 4 years ago
name_extractor 79437a1a3f Remove yelp 4 years ago
nlu_job 86fd6c77db Change ner model with a url of ner server 4 years ago
review 5a221c7f7a added import excel sheet of staff list 4 years ago
review_automation cf6c505575 added word cloud to manager review list page 4 years ago
static f922e59a8d Update sql file 4 years ago
static_root 9d90886dc5 shown all replies to the frontand 5 years ago
user 937fc49e04 separate positive and negative reviews in manager dashboard 4 years ago
yelp 8f60b8c5ae Chnage send mail to multiple location manager and add cc mails 4 years ago
.gitignore cf6c505575 added word cloud to manager review list page 4 years ago
README.md 8d6d46db79 Structure settings and wsgi for development and production environment 5 years ago
client_secrets.json 575b45840a Change the client_secret.json file with mybusiness secret info 5 years ago
manage.py c2f3d7d8c6 Fixes an existance issue 5 years ago
nohup.out db7ad16c10 Add a crontab to send mail in every sunday.. 4 years ago
requirements.txt cf6c505575 added word cloud to manager review list page 4 years ago
review_automation.sql 82a41e1925 update database 4 years ago
review_data_set.csv af2df15a27 Update review dataset 5 years ago
signature_care_review_url.json 4893e1a464 Add an utility function that return all bad review 5 years ago

README.md

Byte Trek Reputation Management

Installation:

1. Clone The reporsitory

➜  git clone http://bytetrek.com:30000/ByteTrek-Projects/review-automation-backend.git

2. Create a virtual environment and active it.

➜  python3 -m venv env
➜  source env/bin/activate

3. Create a mysql database and import the .sql file

(env) ➜  mysql -u root -h localhost -p                 # mysql -u user -h host -p
mysql> CREATE DATABASE review_automation;
mysql> SHOW DATABASES;                                 # Make sure database is created or not.
exit                                                   # Exit out of the mysql prompt
(env) ➜  mysql -u root -p review_automation < review_automation.sql
# Make sure everything is just fine.
(env) ➜  mysql -u root -h localhost -p
mysql> USE review_automation;
mysql> SHOW TABLES;

4. Run the development server

(env) ➜ python manage.py runserver --settings=review_automation.settings.dev

5. Add all corn jobs

(env) ➜ python manage.py crontab add --settings=review_automation.settings.dev
# Make sure corn job has added successfully
(env) ➜ crontab -l                                     # Return list of cronjobs

6. Some usefull management command

  • Store all un-recorded reviews to the database.

    (env) ➜ python manage.py collect_reviews --settings=review_automation.settings.dev
    
    • Get model prediction report.

      (env) ➜ python manage.py model_report n_days
      # Example for last 30 days:
      (env) ➜ python manage.py model_report 30 --settings=review_automation.settings.dev