It's really not a secret the Website is mostly written with GPT
-
Install Visual Studio Code
- Download and install from Visual Studio Code.
-
Install Python (if not already installed)
- Download and install from Python.
-
Extract the
localscripts.github.io
Archive- Unzip the
localscripts.github.io
folder to a convenient location on your computer.
- Unzip the
-
Open the Folder in Visual Studio Code
- Launch Visual Studio Code and open the extracted folder.
-
Open a Terminal in Visual Studio Code
- Press
Ctrl+Shift+~
to open a new terminal window in Visual Studio Code.
- Press
-
Install
http-server
Globally- Run the following command to install
http-server
:npm install -g http-server
- Run the following command to install
-
Start a Python HTTP Server
- Run the following command to start a Python HTTP server:
python -m http.server
- Run the following command to start a Python HTTP server:
-
Find Your Local IP Address
- Press
Windows+R
, typecmd
, and hitEnter
to open Command Prompt. - Run the command
ipconfig
and locate your IPv4 Address.
- Press
-
Access Your Project in a Browser
- Open your browser and navigate to
<IP>:<Port>
. For example, if your IP address is192.168.1.10
and the port is8000
, enterhttp://192.168.1.10:8000
.
- Open your browser and navigate to
-
Good Luck!