https://github.com/nunorc/fend-restaurant-reviews-app-project
https://github.com/nunorc/fend-restaurant-reviews-app-project
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/nunorc/fend-restaurant-reviews-app-project
- Owner: nunorc
- Created: 2018-06-04T14:48:38.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-06T14:40:22.000Z (almost 7 years ago)
- Last Synced: 2025-04-09T21:54:43.700Z (about 1 month ago)
- Language: JavaScript
- Size: 1.05 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Restaurant Reviews App Project
Prepared in the context of Udacity's Front End Developer nanodegree.
## Run the application locally
To run the application locally download or [clone](https://help.github.com/articles/cloning-a-repository/) the project repository. In the folder repository, start up a simple HTTP server to serve up the site files on your local computer. Python has some simple tools to do this, in a terminal, check the version of Python you have: `python -V`. If you have Python 2.x, spin up the server using:
$ python -m SimpleHTTPServer 8000
(or some other port, if port 8000 is already in use.) For Python 3.x, you can use:
$ python3 -m http.server 8000
If you don't have Python installed, navigate to Python's [website](https://www.python.org/) to download and install the software.
With your server running, visit the site: `http://localhost:8000` in your browser.