Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rukbotto/simple-starwars-site
This is a raw, static HTML site packed with information about Star Wars movies, taken from the Wookieepedia.
https://github.com/rukbotto/simple-starwars-site
Last synced: 15 days ago
JSON representation
This is a raw, static HTML site packed with information about Star Wars movies, taken from the Wookieepedia.
- Host: GitHub
- URL: https://github.com/rukbotto/simple-starwars-site
- Owner: rukbotto
- License: other
- Created: 2016-03-07T23:07:38.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-10T17:14:47.000Z (almost 9 years ago)
- Last Synced: 2024-10-05T22:04:17.911Z (3 months ago)
- Language: HTML
- Homepage:
- Size: 12.2 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Simple Star Wars Site
This is a raw, static HTML site packed with information about Star Wars
movies, taken from the [Wookieepedia][1].## Serving the site locally
Although this site can be viewed by simply opening the `.html` files, you would
get a better user experience by serving it using Python's `SimpleHTTPServer` or
`http.server` modules.To serve this site locally, execute the following commands in a terminal window:
> For this to work, you will have to install [Python][2] on your machine.
```
$ cd simple-starwars-site
$ python -m SimpleHTTPServer 8080 # If you have Python 2.7 installed
$ python -m http.server 8080 # If you have Python 3 installed
```After this, you can fire up your favorite web browser and put
[http://localhost:8080][3] in the address bar.[1]: http://starwars.wikia.com/wiki/Main_Page
[2]: https://www.python.org/downloads/
[3]: http://localhost:8080