2023-10-04 17:04:14 +02:00
|
|
|
# wii.hacks.guide
|
|
|
|
|
|
|
|
The complete guide to modding your Nintendo Wii.
|
|
|
|
|
|
|
|
https://wii.hacks.guide/
|
|
|
|
|
|
|
|
## Running the site locally
|
|
|
|
|
|
|
|
This requires the following installed on your system:
|
|
|
|
- ruby(-dev)
|
|
|
|
- bundler
|
|
|
|
|
2024-01-14 01:01:05 +01:00
|
|
|
To test the website locally, clone the source code:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
git clone https://github.com/hacks-guide/Guide_Wii --recurse-submodules
|
|
|
|
cd Guide_Wii
|
|
|
|
```
|
|
|
|
|
|
|
|
Then simply run the following commands:
|
|
|
|
|
2023-10-04 17:04:14 +02:00
|
|
|
```sh
|
2023-10-04 18:09:12 +02:00
|
|
|
bundle config set --local path vendor/bundle
|
2023-10-04 17:04:14 +02:00
|
|
|
bundle install
|
2024-01-14 01:01:05 +01:00
|
|
|
bundle exec jekyll serve
|
2023-10-04 17:04:14 +02:00
|
|
|
```
|
2024-01-14 01:01:05 +01:00
|
|
|
|
2023-10-04 17:04:14 +02:00
|
|
|
The website should now be running on http://127.0.0.1:4000/.
|