Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 649 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 649 Bytes

Screen Search

Small live-updating movie searching webapp using Algolia, React, and Nodejs.

live

Installation

$ npm install

This will install both the server dependencies as well as client dependencies.

Add environment variables to a .env file to configure the server.

$ echo "ALGOLIA_APP_ID=xxxxxxxxxxxxxxxxxxx" > .env
$ echo "ALGOLIA_API_KEY=yyyyyyyyyyyyyyyyyyyy" >> .env
$ echo "ALGOLIA_SEARCH_API_KEY=zzzzzzzzzzzzzzzzz" >> .env
$ echo "ALGOLIA_INDEX_NAME=movies" >> .env

Running

Run the server:

$ npm start

This starts the express server on port 5000.