2023-10-04 15:04:14 +00:00
|
|
|
# 3ds.hacks.guide
|
|
|
|
|
|
|
|
A complete guide to 3DS (and 2DS) custom firmware, from stock to boot9strap.
|
|
|
|
|
|
|
|
https://3ds.hacks.guide/
|
|
|
|
|
|
|
|
## Running the site locally
|
|
|
|
|
|
|
|
This requires the following installed on your system:
|
2024-09-16 08:36:12 +00:00
|
|
|
- node.js
|
2023-10-04 15:04:14 +00:00
|
|
|
|
2024-01-13 23:18:23 +00:00
|
|
|
To test the website locally, clone the source code:
|
2024-09-16 08:36:12 +00:00
|
|
|
|
2024-01-13 23:18:23 +00:00
|
|
|
```sh
|
|
|
|
git clone https://github.com/hacks-guide/Guide_3DS --recurse-submodules
|
|
|
|
cd Guide_3DS
|
|
|
|
```
|
|
|
|
|
|
|
|
Then simply run the following commands:
|
2023-10-04 15:04:14 +00:00
|
|
|
|
|
|
|
```sh
|
2024-09-16 08:36:12 +00:00
|
|
|
npm ci
|
|
|
|
npm run docs:dev
|
2023-10-04 15:04:14 +00:00
|
|
|
```
|
|
|
|
|
2024-09-16 08:36:12 +00:00
|
|
|
The website should now be running on http://127.0.0.1:5173/ (or a port shown on the terminal).
|