A dev version of (A practice file generator for everyone's favorite game: Super Mario Sunshine)
Find a file
2020-06-30 02:11:39 +02:00
.github/workflows workflow skip test [skip ci] 2020-06-30 01:28:57 +02:00
dockerfiles fix stageloader post-game options 2020-06-29 23:31:44 +02:00
docs Update Generator.vue 2020-06-30 01:38:53 +02:00
scripts no longer needed 2020-06-30 00:02:03 +02:00
.dockerignore add dockerfile 2020-06-29 23:31:44 +02:00
.editorconfig switch from azure-pipelines to github actions 2020-06-29 23:31:44 +02:00
.gitattributes update .gitattributes [skip ci] 2020-06-30 02:11:39 +02:00
.gitignore init vuepress 2020-06-29 23:31:44 +02:00
.prettierrc prevent flickering & .prettier 2020-06-29 23:31:44 +02:00
docker-compose.yml switch from azure-pipelines to github actions 2020-06-29 23:31:44 +02:00
LICENSE add license 2020-06-29 23:31:44 +02:00
package.json Update package.json 2020-06-29 23:31:44 +02:00
Readme.md update readme [skip ci] 2020-06-30 01:23:36 +02:00
yarn.lock replace package-lock with yarn.lock 2020-06-29 23:31:44 +02:00

GCT Generator

GitHub license CD Pipeline

This repository contains the code behind the Super Mario Sunshine Cheatfile Generator at https://gct.zint.ch/


Features


Contributing

Updating Practice Codes

The codes are stored as XML files (one for each game version) in the docs/.vuepress/public/codes directory. If you want to add or change codes edit the corresponding XML file. Node that GMSJ0A refers to the NTSC-J 1.1 release of Super Mario Sunshine. (It's not actually called version A but that's what we've been calling it for years due to a misconception on what the A on the back of the box means).

Updating Guides

You can find the guides in the docs folder. Simply edit the corresponding markdown file (.md).

Site Development

If you intend to change site code you need NodeJS version 12.18.1 or greater installed on your local.

# Install yarn
npm i -g yarn

# Install dependencies
yarn

# Run project in watch mode
# This will serve the page in development mode on http://localhost:8080
yarn dev

# Build project
yarn build

Build and preview the site (Docker)

The project root provides a docker-compose file, which creates a clean build (with the same configuration as the production build) and spins up a minimal Apache server on your local, serving the resulting build on port 8080.

# Build and serve the site on http://localhost:8080
# Press CTRL+C to stop the container
docker-compose up --build