Skip to content

Latest commit

 

History

History
58 lines (40 loc) · 2.03 KB

CONTRIBUTING.md

File metadata and controls

58 lines (40 loc) · 2.03 KB

Contributing to Forgero

If you want to improve a feature or fix a bug in Forgero, feel free to fork the repo and create a pull request.
You can also simply open an issue with the tag enhancement.

  1. Fork Forgero to your Github account
  2. Set up the project as described in the development section
  3. Create your feature branch: git checkout -b feature/amazing-feature
  4. Commit your changes: git commit -m 'Add an amazing feature'
  5. Push to the branch: git push origin feature/amazing-feature
  6. Open a pull request

Don't forget to give the project a star! Thanks again!
Your contributions are greatly appreciated.

Thank you to Forgero's contributors ( see CONTRIBUTORS.md).

Development

Modding Minecraft is very easy thanks to the tools developed by the modding community.

Prerequisites

IntelliJ IDEA

IntelliJ IDEA should already come with their own Java JDK and Gradle version out of the box, and is recommended for Minecraft development:

Different IDE/no IDE

If you don't want to use IntelliJ IDEA, but instead you want to use another IDE (or no IDE) that doesn't contain these prerequisites out of the box:

Setting up the repository

  1. Clone this repository (can be done via the command line or your IDE):

    git clone https://github.com/sigmundgranaas/forgero.git
  2. Open Forgero in IntelliJ IDEA (or your IDE of choice/no IDE):

    new > project from existing sources > choose forgero folder
  3. Make changes and run Forgero (can be done via the command line or your IDE):

    ./gradlew runClient