Created
June 25, 2020 11:43
-
-
Save rakibulinux/8912231c1a5d901f59d2a89ba9f02326 to your computer and use it in GitHub Desktop.
How To Install Grocery Delivery App App on Ubuntu 18.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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