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.
- Host: GitHub
- URL: https://github.com/faizahmedfarooqui/ycombinator-react
- Owner: faizahmedfarooqui
- License: mit
- Created: 2020-04-23T07:47:32.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-04T06:13:01.000Z (over 5 years ago)
- Last Synced: 2025-04-18T16:20:33.902Z (about 1 year ago)
- Topics: dockerfile, google-chart, hacker-news, hackernews, hackernews-clone, heroku, json-ld, react-redux, react-ssr
- Language: JavaScript
- Homepage: https://hackernews-faizahmed.herokuapp.com
- Size: 1.64 MB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README

## 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
```