JSHunt is a curation of the best products in JavaScript world. Based on Product Hunt.
Built following Node, ReactJS and React Native free courses on Rocketseat.
- Install docker and docker-compose
git clone
this repo- Run
docker-compose build
anddocker-compose up
- Open your browser in http://localhost:3000
- Install docker
git clone
this repo- Go to backend folder and run the following commands:
# create backend image
docker build -t backend .
# create a network to connect services
docker network create jshunt
# run mongodb container
docker run --name mongodb --network=jshunt -d mongo
# run backend container
docker run --name backend --network=jshunt -e MONGODB_HOST=mongodb -p 3001:3001 --entrypoint npm -d backend -c run demo
- Go to frontend folder and run the following command:
# create frontend image
docker build -t frontend .
# run frontend container
docker run --name frontend -e BACKEND_ADDRESS=localhost:3001 -p 3000:80 -d frontend
- Open your browser in http://localhost:3000
- Install node, yarn and mongodb
- Start mongodb
- Go to backend folder, run
npm install
andnpm run demo
- Go to frontend folder, run
yarn install
andnpm start
- Backend
- Frontend
- Mobile App