A collection of information for Speedrunners the game accessible here.
Todo google forms:
- Submission link
- General inquiry link(suggestions, concerns, corrections, etc..)
You can edit the markdown files in src/ directory and submit a pull request through the Github web interface.
The wiki is created by making markdown files and material for mkdocs turning them into webpages. Instructions for if you wanted to build it locally for some reason:
Note
This assumes you already have python installed and have familiarity with the terminal.
Clone the repository.
git clone https://github.com/StarFilledSky/SR-Wiki
Create a python virtual environment in the directory.
python -m venv venv
Activating the virtual enviroment.
Windows
./venv/Scripts/Activate.ps1
Linux / MacOS
source myvenv/bin/activate``
Install the requirements for building the project.
pip install -r requirements.txt
You can now edit files in the src/ directory and use mkdocs build to generate files in the docs/ directory and mkdocs serve if you wanted to view the files served from a local webserver.