Skip to content

Latest commit

 

History

History
30 lines (16 loc) · 934 Bytes

README.md

File metadata and controls

30 lines (16 loc) · 934 Bytes

playboy-interview

code assignment for playboy: creating a clone of HackerNews using React, Node, and GraphQL.

MVP includes

Display a list of links (Complete) Search the list of links (Complete) User can create new links (Complete only on back end, can use graphal client to and the insertEntry mutation to add from back end) Realtime update when a new links are created (not complete)

instructions

The applications expect to run on port 3000 and 4000, so try to have those free if you can.

  1. in a terminal cd into CLONE_HOME/playmate-news-server and run

    node start.js

    The server will be running on http://localhost:4000 and will serve up the GraphQL edit tool directly from there

  2. in a terminal cd into CLONE_HOME/playmate-news-client and run

    npm start

    the server will start and a browser window should automatically open on http://localhost:3000

That's it