Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 529 Bytes

README.md

File metadata and controls

23 lines (20 loc) · 529 Bytes

fall2023

Development Setup

  • Start a local webserver in the root directory (Using command prompt / terminal)

    • Eg. using Python2:

      cd [filepath]/fall2023
      python -m SimpleHTTPServer
      
    • Eg. using Python3:

      cd [filepath]/fall2023
      python -m http.server
      
      • If on a mac:
        cd [filepath]/fall2023
        python3 -m http.server
        
    • Navigate to http://localhost:8000/

  • OR if using VSCode, download the extension called "Live Preview" by Microsoft