Gate Directory is a website dedicated to cataloging quantum gates used across the field of quantum information and computation.
The website is built with static site generator 11ty, and to build it locally, you'll need Node.js.
- Clone the repository:
git clone git@github.com:natestemen/gate.directory.git cd gate.directory - Install dependencies:
npm install
- Start the development server:
npm run serve
- The
npm run servecommand will indicate which port the pages are being served from on your machine.
When deploying to GitHub Pages the build uses a path prefix of /gate.directory/ so asset URLs resolve correctly. Locally you can override this with the PATH_PREFIX environment variable:
PATH_PREFIX=/ npm run build