Skip to content

arnabRoy21/web_scraper_selenium

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Web Scraper App

A Selenium based web scraper for capturing customer sentiments - reviews and comments

Ways to set it up:

  1. Clone this project to your local project directory.
  2. Make any enhancements to code and commit the changes.
    • git add .
    • git commit -m message

Heroku Deployment Steps:

  1. Install heroku CLI and create a heroku web app - web-scraper-selenium
  2. Add environment variables -
    • CHROMEDRIVER_PATH = /app/.chromedriver/bin/chromedriver
    • GOOGLE_CHROME_BIN = /app/.apt/usr/bin/google-chrome
    • DB_USER = db_user
    • DB_PASSWORD = password
  3. Add below three build packs -
  4. In heroku CLI, cd to project folder and run - heroku login
  5. Add a heroku git remote for the already created heroku web app
    • heroku git:remote -a web-scraper-selenium
  6. Deploy the app
    • git push heroku main