Warning
This is an archived project and is no longer maintained. The complexity of the project has increased and the project has been moved to a new repository and a new base. The new repository uses C# and it can be found here.
- Download the latest release from here: Latest Release
- Allow the program to download, it isn't malicious!
- Start the program and wait for the mods to download
- When the menu showed up, navigate to the preferred modpack and hit enter to download
- command to get the ip from the terminal:
cd $HOME\Fork\minecraft-mods\; .\print-ip.ps1
- command to open the ports for minecraft server(25565):
- start an Admin Terminal end run the following command:
cd $HOME\Fork\minecraft-mods\; .\open-ports.ps1
- start an Admin Terminal end run the following command:
- Fork the repository: How to fork a repository
- Clone the repository:
git clone https://github.com/<username>/minecraft-mods.git
- Create a new branch:
git checkout -b <branch_name>
(or use a tool like Fork) - Create a Virtual Environment:
python -m venv venv
- Activate the Virtual Environment (if not using an IDE):
- Windows:
.\venv\Scripts\Activate
- Linux:
source venv/bin/activate
- Windows:
- Install the dependencies:
pip install -r requirements.txt
- Make the changes in the code
- Commit the changes:
git commit -m "Message"
(or use a tool like Fork) - Push the changes:
git push origin <branch_name>
(or use a tool like Fork) - Create a Pull Request: How to create a Pull Request