Skip to content

Instantly share code, notes, and snippets.

@rakibulinux
Created June 25, 2020 11:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rakibulinux/8912231c1a5d901f59d2a89ba9f02326 to your computer and use it in GitHub Desktop.
Save rakibulinux/8912231c1a5d901f59d2a89ba9f02326 to your computer and use it in GitHub Desktop.
How To Install Grocery Delivery App App on Ubuntu 18.04
#!/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