PCSX2 website contents
Find a file
GovanifY d809a082b6
Some checks failed
Build Website / Check for PNGs (push) Has been cancelled
Cypress Tests / Chrome (push) Has been cancelled
Cypress Tests / Chrome | No Recording (push) Has been cancelled
Cypress Tests / Firefox (push) Has been cancelled
Cypress Tests / Firefox | No Recording (push) Has been cancelled
Build Website / Docusaurus Build (push) Has been cancelled
config: update status/monitoring link (#404)
2025-05-13 08:57:58 +02:00
.github build(deps): bump peter-evans/create-pull-request from 7.0.7 to 7.0.8 (#391) 2025-05-12 21:42:44 +07:00
.vscode build(deps): bump the frontend-deps group with 19 updates (#321) 2024-05-29 21:52:36 -04:00
blog build(deps): bump the frontend-deps group across 1 directory with 22 updates (#384) 2025-03-15 02:04:16 -04:00
docker tests: create some initial Cypress integration tests (#93) 2022-05-07 22:08:45 -04:00
docs Docs: Fix some issues with the debugger documentation (#397) 2025-04-24 17:48:02 +07:00
scripts build(deps): bump the frontend-deps group with 19 updates (#321) 2024-05-29 21:52:36 -04:00
src downloads: make sure dl switch is defaulting to the localStorage (#403) 2025-05-12 16:37:43 +02:00
static Compat: Compat cleanup attempt 4 (#374) 2025-02-27 09:33:33 +01:00
tests build(deps): bump the frontend-deps group with 19 updates (#321) 2024-05-29 21:52:36 -04:00
usage_docs Migrate from Hugo to Docusaurus, refresh the design of the site (#183) 2022-12-12 21:51:37 -05:00
util/mock-api Updating dependencies, specifically NextUI (#358) 2024-11-15 20:32:20 -05:00
.gitignore Revert "gitignore: ignore autogenerated yarn deps files (#298)" (#299) 2024-02-18 22:00:24 +07:00
.nojekyll miscellaneous cleanup 2022-01-19 02:39:59 -05:00
.prettierrc.yaml Migrate from Hugo to Docusaurus, refresh the design of the site (#183) 2022-12-12 21:51:37 -05:00
config.yaml chore: remove twitter (#367) 2025-01-21 16:54:00 +01:00
docusaurus.config.js config: update status/monitoring link (#404) 2025-05-13 08:57:58 +02:00
LICENSE deps: Add script to make manually vendoring dependencies not so manual (#34) 2022-02-06 22:19:27 -05:00
package.json build(deps): bump the frontend-deps group across 1 directory with 22 updates (#384) 2025-03-15 02:04:16 -04:00
postcss.config.js Updating dependencies, specifically NextUI (#358) 2024-11-15 20:32:20 -05:00
README.md mdx: remove space in image so that rss feed works (#295) 2024-02-05 12:40:35 +01:00
redirects.js Redirects: Create pcsx2.net/discord (#341) 2024-07-27 10:16:18 -04:00
sidebars.js Migrate from Hugo to Docusaurus, refresh the design of the site (#183) 2022-12-12 21:51:37 -05:00
tailwind.config.js deps: @nextui-org/react to @heroui/react (#368) 2025-02-27 18:01:06 -05:00
yarn.lock build(deps): bump estree-util-value-to-estree from 3.2.1 to 3.3.3 (#395) 2025-05-12 21:42:20 +07:00

PCSX2 Website

The main PCSX2 website is a statically generated website, leveraging Docusaurus.

Setup

Windows

Setup Scoop as per instructions at https://scoop.sh/.

Open Powershell and install the following.

scoop install git nodejs
npm install --global yarn

Navigate to your local git repository for the site and use the below to start the server.

To start the server you will need to be in your Github repository that contains the package.json.

yarn start # alternatively, you can use `npm run start`

Browse to http://localhost:8080/

Linux

TODO - but very similar just using your package manager of choice

Developing

  • The docusaurus documentation is very useful and has plenty of examples https://docusaurus.io/docs
  • Docusaurus uses React and JSX, seek out related resources for those if editing the frontend code

Making a new Article

Run the following to setup the boilerplate for a new article:

yarn new-article

The article will go into /blog/<year>/<title>

You should add an image to serve as a preview and title card respectively (if appropriate) by using the image: and titleImage: frontmatter field, for example:

---
title: ...
---
image: ./img/my-cool-thumbnail.webp
titleImage: ./img/my-cool-thumbnail.webp
---

titleImage assets currently needs to be stored in the static folder. No image path, whether in the frontMatter or in the article, should contain spaces.

Caveats if Migrating a Legacy Article

  • When running the command above, you should provide an alias that matches the relative URL from the old website. This will prevent legacy links from becoming dead. See existing articles that have been migrated for an example.

Builtin Component Documentation

See the following article