This repository will contain an imported copy of https://www.donj51.com and configuration to support iterative cleanup and refactoring.
Goals
- Import the current public static site into the repo (branch website-import, folder /site).
- Add formatting, linting, and CI so automated fixes and PRs can help clean up old code.
- Create small issues and PRs for incremental improvements.
Getting started
-
Checkout the import branch: git fetch origin git checkout -b website-import origin/website-import
-
Site files are in /site. Serve locally with a static server, e.g.: npx http-server site -p 8080
-
Formatting & linting
- Prettier and ESLint are configured. Run: npm install npm run lint npm run format