https://github.com/natestemen/gate.directory
Catalog of quantum gates
https://github.com/natestemen/gate.directory
quantum-computing
Last synced: 23 days ago
JSON representation
Catalog of quantum gates
- Host: GitHub
- URL: https://github.com/natestemen/gate.directory
- Owner: natestemen
- Created: 2024-11-15T03:16:35.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-03-18T15:40:06.000Z (3 months ago)
- Last Synced: 2026-03-19T05:50:37.921Z (3 months ago)
- Topics: quantum-computing
- Language: Nunjucks
- Homepage: https://gate.directory/
- Size: 502 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `gate.directory`
Gate Directory is a website dedicated to cataloging quantum gates used across the field of quantum information and computation.
## Local Development
The website is built with static site generator [11ty](https://www.11ty.dev/), and to build it locally, you'll need [Node.js](https://nodejs.org/en/download).
1. Clone the repository:
```sh
git clone git@github.com:natestemen/gate.directory.git
cd gate.directory
```
2. Install dependencies:
```sh
npm install
```
3. Start the development server:
```sh
npm run serve
```
4. The `npm run serve` command 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:
```sh
PATH_PREFIX=/ npm run build
```