This is the open source code for my website! All my projects can be found here. Everything I write is open-source, so you can see exactly what code goes into making everything. I hope you enjoy!
This repository contains both the client-side and server-side code for eddyzow.net:
-
docs/- Static website files served via GitHub Pages- Contains all HTML, CSS, JavaScript, and assets
- Deployed to GitHub Pages from the
docsfolder (branch-based deployment)
-
server/- Node.js backend server- Node.js server for API endpoints and dynamic features
- Run locally for development or deploy to your hosting platform
The client is automatically deployed via GitHub Pages from the docs/ folder. To view locally:
-
Navigate to the docs directory:
cd docs -
Open
index.htmlin your browser or use a local server:python -m http.server 8000
To run the server locally:
-
Navigate to the server directory:
cd server -
Install dependencies:
npm install
-
Start the server:
node server.js
The server will run on the configured port.
Open source - feel free to use and learn from this code!