Restaurant Reviews project.
Before running this project You need to install and run Local Development API Server
-
Clone repository
git clone [email protected]:dw72/mws-restaurant.git
-
Go to the app folder
cd mws-restaurant
-
Install dependencies (if you don't have node install it first)
npm install
-
Add your API keys
- Google Maps API key in line 3 of gmaps.js file
GoogleMapsLoader.KEY = "YOUR_GOOGLE_MAPS_API_KEY";
- Google Maps Static API in line 251 of main.js file
const KEY = "YOUR_GOOGLE_MAPS_STATIC_API_KEY";
-
If you want build project and run preview production server
npm run build npm start
If you want run development server with live updates
npm run dev
-
Open site
http://localhost:5500
in your browser.