Changes between Version 1 and Version 2 of dev/runbook


Ignore:
Timestamp:
Jun 24, 2020 9:00:48 PM (4 years ago)
Author:
jonathan
Comment:

Setup Decompiled Workspace

Legend:

Unmodified
Added
Removed
Modified
  • dev/runbook

    v1 v2  
    11= Developer Runbook (Quick Start and Tips) =
    22This wiki page is intended for mod developers that work with the source code.  Assuming you are using ''IntelliJ IDEA'', this documents some additional necessary steps to take above and beyond simply cloning the Git repository and importing it into IntelliJ
     3
     4== Setup Decompiled Workspace ==
     5The first thing to do after cloning the Git repository is to run the gradle task `setupDecompWorkspace`.  This processes the ''Minecraft'' source making some necessary changes to the binary code that are expected by our source.  The most straightforward way to do this is from inside IntelliJ, but you can also do it from the command line as follows from the root directory of the project:
     6
     7{{{#!sh
     8./gradlew setupDecompWorkspace
     9}}}
    310
    411== Sub-module Initialization ==