An open API service indexing awesome lists of open source software.

https://github.com/faizahmedfarooqui/ycombinator-react

Hacker News Clone using ReactJS - SSR, Firebase & Google Chart.
https://github.com/faizahmedfarooqui/ycombinator-react

dockerfile google-chart hacker-news hackernews hackernews-clone heroku json-ld react-redux react-ssr

Last synced: about 1 year ago
JSON representation

Hacker News Clone using ReactJS - SSR, Firebase & Google Chart.

Awesome Lists containing this project

README

          

![Image](https://github.com/faizahmedfarooqui/ycombinator-react/blob/master/public/Image.png)

## Demo

https://hackernews-faizahmed.herokuapp.com/top

## Local SetUp:

```sh
# Clone the Repository
git clone https://github.com/faizahmedfarooqui/ycombinator-react.git;

# Install dependencies using NPM or Yarn
yarn install;

# Create the Client Build
yarn build;

# Start the Server
yarn start;
```

## Docker SetUp:

```sh
# Cloning the Repository
git clone https://github.com/faizahmedfarooqui/ycombinator-react.git;

# Create the Build
docker build -t / .

# Run the Image
docker run -p 49160:4000 -d /

# Get the Container ID
docker ps

# Check the log output
docker logs

# Go inside the Container
docker exec -it /bin/bash

# Test the Application
curl -i localhost:49160
```