Skip to content

Instantly share code, notes, and snippets.

@linuxbiekaisar
Created July 2, 2020 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linuxbiekaisar/fd501f44dcda863b0e740b7613c9b9d0 to your computer and use it in GitHub Desktop.
Save linuxbiekaisar/fd501f44dcda863b0e740b7613c9b9d0 to your computer and use it in GitHub Desktop.
Grocery Delivery App install in Ubuntu
#!/bin/sh
curl -sL https://deb.nodesource.com/setup_10.x -o nodesource_setup.sh
sudo apt install nodejs -y
git clone https://github.com/SchoolOfFreelancing/Grocery-Delivery-App-Frontend.git
cd Grocery-Delivery-App-Frontend
npm install
npm start
http://localhost:3000/
#Builds the app for production
npm run build
npm install -g serve
serve -s build
#Visit Here
http://localhost:5000
http://192.168.0.110:5000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment