Skip to content

Latest commit

 

History

History
58 lines (37 loc) · 1.04 KB

README.md

File metadata and controls

58 lines (37 loc) · 1.04 KB

Mobile Web Specialist Certification Course

Restaurant Reviews project.


Prequisites

Before running this project You need to install and run Local Development API Server

Steps to run the project

  1. Clone repository

    git clone git@github.com:dw72/mws-restaurant.git
  2. Go to the app folder

    cd mws-restaurant
  3. Install dependencies (if you don't have node install it first)

    npm install
  4. 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";
  5. 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
  6. Open site http://localhost:5500 in your browser.