Skip to content

Latest commit

 

History

History
31 lines (28 loc) · 993 Bytes

README.md

File metadata and controls

31 lines (28 loc) · 993 Bytes

slr_demo

demo app for sea level rise slider

Libraries Used:

What's here

  • index.html - A simple HTML page with a root app element that vue is mounted on
  • style.css - CSS stylesheet
  • app.js - Javascript file where map and slider functionality are added

Run it locally (must have python installed)

Open command line (terminal on mac, powershell on windows) Check which version of python you have

python -V

Navigate to the project folder

cd path to cloned repo folder

Run a simple python web server from inside the root project folder

# If Python version returned above is 3.X
python3 -m http.server
# On windows try "python" instead of "python3"
# If Python version returned above is 2.X
python -m SimpleHTTPServer

The project should be running locally at http://localhost:8000