Skip to content

Instantly share code, notes, and snippets.

@afahitech
Created October 14, 2021 16:51
Show Gist options
  • Save afahitech/251b2bad4d328fe09719d514653e495b to your computer and use it in GitHub Desktop.
Save afahitech/251b2bad4d328fe09719d514653e495b to your computer and use it in GitHub Desktop.
How to install GroceryDeliveryApp on Ubuntu 20.04 LTS
#!/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