Skip to content

Latest commit

 

History

History
44 lines (26 loc) · 1.7 KB

README.md

File metadata and controls

44 lines (26 loc) · 1.7 KB

ecs_s3_scraper_start

This repo is the starter for ecs_s3_scraper. The idea being that if you clone this repo and follow the setup steps below, then it becomes super easy to follow along the hands-on coding in the ecs_s3_scraper.

How to get the most out of this repo

Just follow the steps below, and if you notice any failures, then please log an issue

  1. Install node and npm

    Note: v6 or v7 should be fine

  2. Install yarn package manager $ npm install -g yarn

  3. Git clone this repo in a directory of your choice, if you haven't already.

    $ git clone https://github.com/anishk123/ecs_s3_scraper_starter.git

  4. Get to the working directory $ cd ecs_s3_scraper_starter

  5. Run yarn install $ yarn install

    Note: the above will install the libraries and dependencies required for the project

  6. Run index.js $ node index.js

    Note: the above will open up a web browser that is written in electron, and it will search the keyword "code and coffee vancouver"

  7. Download Docker - Docker CE is the free version

  8. Download a nightmare docker image $ docker pull ivanvanderbyl/docker-nightmare

    Note: We will be adding our own web scraper code to this image.

  9. Download a fake S3 docker image $ docker pull lphoward/fake-s3

    Note: This image will be used to run a mock S3 service that we can develop our code against, instead of using actual AWS S3

You are DONE! and ready to rock on over to ecs_s3_scraper