It's really not a secret the Website is mostly written with GPT

Domains

Project Setup Guide

How to Set Up the Project

  1. Install Visual Studio Code

  2. Install Python (if not already installed)

    • Download and install from Python.
  3. Extract the localscripts.github.io Archive

    • Unzip the localscripts.github.io folder to a convenient location on your computer.
  4. Open the Folder in Visual Studio Code

    • Launch Visual Studio Code and open the extracted folder.
  5. Open a Terminal in Visual Studio Code

    • Press Ctrl+Shift+~ to open a new terminal window in Visual Studio Code.
  6. Install http-server Globally

    • Run the following command to install http-server:
      npm install -g http-server
  7. Start a Python HTTP Server

    • Run the following command to start a Python HTTP server:
      python -m http.server
  8. Find Your Local IP Address

    • Press Windows+R, type cmd, and hit Enter to open Command Prompt.
    • Run the command ipconfig and locate your IPv4 Address.
  9. Access Your Project in a Browser

    • Open your browser and navigate to <IP>:<Port>. For example, if your IP address is 192.168.1.10 and the port is 8000, enter http://192.168.1.10:8000.
  10. Good Luck!