Go to file
dependabot[bot] 5b8f45b71b
chore(deps-dev): bump eslint from 8.45.0 to 8.46.0 (#3466)
Bumps [eslint](https://github.com/eslint/eslint) from 8.45.0 to 8.46.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v8.45.0...v8.46.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-01 15:02:47 +02:00
.github ci: update GitHub actions to use Node 16 (#3457) 2023-07-28 17:21:36 +02:00
assets/scss format typewritter effect in headers (#3313) 2023-06-19 13:16:23 +02:00
components fix(events): calendar copy feedback text (#3459) 2023-07-28 17:47:00 +02:00
composables Refactor/3311 replace v bind (#3327) 2023-06-22 11:14:03 +02:00
constants fix: replace broken links (#3401) 2023-07-06 17:16:13 +02:00
content/providers fix(code-snippet): preserve empty lines (#3450) 2023-07-26 10:42:41 +02:00
deploy Feat/include latest changes nuxt 3 (#3106) 2023-04-06 15:16:04 +02:00
hooks test(hooks): increase coverage (#3395) 2023-07-24 11:38:07 +02:00
layouts refactor(layout): make "default-max" the default (#3455) 2023-07-28 17:03:13 +02:00
pages fix: remove incorrect links to readings (#3474) 2023-07-31 11:39:08 -07:00
plugins feat: remove Hotjar (#3447) 2023-07-21 16:14:27 +02:00
public feat(learn): Add new lesson pages (#3431) 2023-07-18 18:57:00 +02:00
tests test(hooks): increase coverage (#3395) 2023-07-24 11:38:07 +02:00
types chore(deps-dev): bump nuxt from 3.5.3 to 3.6.5 (#3448) 2023-07-24 16:04:50 +02:00
utils fix(ui-cta): logic and UI for external and internal links (#3436) 2023-07-25 12:29:35 +02:00
.env.example feat(general): improve the dev workflow with json data (#3374) 2023-07-04 13:45:47 +02:00
.eslintrc.js style: configure lint for Nuxt 3 (#2978) 2023-02-15 15:20:14 +01:00
.gitignore feat(general): improve the dev workflow with json data (#3374) 2023-07-04 13:45:47 +02:00
.npmrc feat: nuxt 3 minimal working app (#2971) 2023-02-13 17:39:59 +01:00
.stylelintrc.js style: fix lint issues (#3088) 2023-04-03 12:11:56 +02:00
ARCHITECTURE.md feat: remove Hotjar (#3447) 2023-07-21 16:14:27 +02:00
CODE_OF_CONDUCT.md style: configure lint for Nuxt 3 (#2978) 2023-02-15 15:20:14 +01:00
CONTRIBUTING.md Feat/include latest changes nuxt 3 (#3106) 2023-04-06 15:16:04 +02:00
Dockerfile Pa fix previewalign (#3341) 2023-06-15 15:21:13 +02:00
LICENSE.txt [work in progress] New website 2018-06-30 00:37:09 +02:00
README.md refactor: components naming (#3387) 2023-07-04 17:15:11 +02:00
SECURITY.md Feat/include latest changes nuxt 3 (#3106) 2023-04-06 15:16:04 +02:00
error.vue fix(404): documentation link (#3468) 2023-07-31 16:20:05 +02:00
nginx.preview.conf new preview build to generate static site (#3339) 2023-06-15 12:46:16 +02:00
nuxt.config.ts fix(seo): removed duplicated meta description tag from head (#3430) 2023-07-19 17:56:09 +02:00
package-lock.json chore(deps-dev): bump eslint from 8.45.0 to 8.46.0 (#3466) 2023-08-01 15:02:47 +02:00
package.json chore(deps-dev): bump eslint from 8.45.0 to 8.46.0 (#3466) 2023-08-01 15:02:47 +02:00
tsconfig.json feat: adjust nuxt configuration (#2967) 2023-02-10 13:35:43 +01:00
vitest.config.ts refactor: setup Coveralls in Nuxt 3 (#3085) 2023-03-31 16:57:49 +02:00

README.md

Qiskit

Welcome to Qiskit.org

Qiskit is an open-source quantum computing software development framework for leveraging today's quantum processors in research, education, and business.

Qiskit.org is released under the Apache 2.0 License. Current GitHub Action build status. PRs welcome! Follow @qiskit

Home page · Learn · Events · Advocates · Ecosystem · Documentation · Providers


Table of Contents


🚀 Get Up and Running

  1. Download this repository and go to its folder

    git clone git@github.com:Qiskit/qiskit.org.git && cd qiskit.org
    
  2. Install dependencies

     npm install
    
  3. Run a local server with hot reload at localhost:3000

    npm run dev
    

💻 Technology Used

Qiskit.org is a static website generated using Nuxt.

We create and run tests using Vitest, avoid syntax errors using ESLint and Stylelint, and automate code integration and deployment using GitHub Actions.


🏭 Content Generation

Qiskit.org integrates with the tools used by the IBM Quantum Community Team to generate content based on 3rd party APIs such as Airtable. Part of this content is prefetched during building time. While developing, it is disabled by default. If you want enable content generation, you must set the environment variable GENERATE_CONTENT. For instance:

GENERATE_CONTENT=1 npm run dev

Notice that, for communicating with the team tools, API keys may be required. It is the case of dealing with Airtable for the generation of the event index. If you think you should have access to these tables, talk to the Events Squad in the Community Team, get your developer API key and set the AIRTABLE_API_KEY environment variable to this value:

GENERATE_CONTENT=1 AIRTABLE_API_KEY=<your airtable api key> npm run dev

🥸 Mocking content

If you should not have access to the content tables (or you don't want to fetch these data), it can be mocked by setting the environment variable MOCK_CONTENT to true .

If you start up the project with npm run dev , mocked content is enabled by default.

The project has a default mocked content under the hooks/mock/content folder. If you want your own custom mocked content, you can create a new folder and set it as your mocked content folder using the environment variable MOCK_BASE_PATH which should be an absolute path of your system.


🏷️ Naming Conventions

Nuxt Components

When working with files in the components/ directory, please adhere to the following naming conventions:

  • Component files and directories should be named using PascalCase.
  • Always use multi-word names.
  • Simplify component names where possible, for example, EventsItemCard can be named EventsCard.
  • Group related components in folders when more than one component refers to the same concept.
  • When naming the component .vue files, include the whole path to make it easier to locate the components.
  • Generic components that can be reused across multiple pages should be placed in the components/Ui/ directory.
  • Components specific to a page should be placed in their respective directory, such as components/Events/ for events-specific components.
  • Avoid appending "Section" to component names, as it is usually implied that the component represents a section of the page.

✏️ How to Contribute

Contributions are always welcomed, no matter how large or small. Before contributing, please read the contributing guide and code of conduct.


🗓 Open backlog

We actively maintain our backlog using GitHub Projects. You can view our backlog here.


👩‍💻 Maintainers

Eddybrando Vásquez
Eddybrando Vásquez

🐛💻💬
Randy Tolentino
Randy Tolentino

🐛💻💬
Randy Tolentino
Russell Huffman

🎨💬
Yaiza García
Yaiza García

🐛💻💬

🔗 Connect with Qiskit