mirror of
https://github.com/hacks-guide/Guide-WiiU.git
synced 2026-05-15 08:40:10 -05:00
36 lines
1.5 KiB
Markdown
36 lines
1.5 KiB
Markdown
# Wii U Hacks Guide
|
|
|
|
A guide collaboration between Nintendo Homebrew's Helpers and Staff, from stock to Aroma custom firmware.
|
|
|
|
[](https://wiiu.hacks.guide/)
|
|
[](https://hacks-guide.crowdin.com/u/projects/10)
|
|
[](https://discord.gg/C29hYvh)
|
|
[](https://github.com/hacks-guide/Guide-WiiU/commits/master/)
|
|

|
|
[](https://github.com/hacks-guide/Guide-WiiU/blob/master/LICENSE.md)
|
|
|
|
## Running the site locally
|
|
|
|
This requires the following installed on your system:
|
|
|
|
* [node.js](https://nodejs.org/en)
|
|
|
|
To test the website locally, clone the source code:
|
|
|
|
```shell
|
|
git clone https://github.com/hacks-guide/Guide-WiiU.git --recurse-submodules
|
|
cd Guide-WiiU
|
|
```
|
|
|
|
Then simply run the following commands:
|
|
|
|
```shell
|
|
npm ci
|
|
npm run docs:dev
|
|
```
|
|
|
|
> [!TIP]
|
|
> If you choose to run multiple web servers at once, they will begin running at the next highest usable port (e.g. :5174, :5175, and so on).
|
|
|
|
The website should now be running on <http://127.0.0.1:5173/> (or whatever port is shown on the terminal).
|