The source code of https://www.appveyor.com/
Install:
- Node.js >= 18
- Ruby matching version found in
.ruby-version - Bundler: run
gem install bundler
Install project dependencies:
npm install
bundle installBuild the production static site:
npm run buildThe generated site is written to the _site/ directory.
The build script runs Jekyll and then performs the asset pipeline directly from
scripts/build.js: CSS and JavaScript bundling/minification, rewriting refrences, HTML minification, etc.
To preview the generated site locally, serve _site/ with any static file
server. For example:
npx http-server _site -p 4000Then open http://localhost:4000/.