This project focus on accessibility, responsive design and a seamless offline experience for the users.
Clone the GitHub repository. If you don't have Python installed, navigate to Python's website to download and install the software.
$ git clone https://github.com/mariam-s-m/restaurant-review-app.git
$ cd mws-restaurant-stage-1
In a terminal, check the version of Python you have:
$ python -V
If you have Python 2.x run the following command, you can also specify other port if port 8000 is already in use.
$ python -m SimpleHTTPServer 8000
For Python 3.x, you can use:
$ python3 -m http.server 8000
With your server running, visit the site: localhost:8000 to access the app.
OR you can check this tool (https://chrome.google.com/webstore/detail/web-server-for-chrome/ofhbbkphhbklhfoeikjpcbhemlocgigb).
- Helpful resource (https://developers.google.com/web/fundamentals/codelabs/offline/).