Changes between Version 1 and Version 2 of dev/runbook
- Timestamp:
- 06/25/20 09:30:48 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
dev/runbook
v1 v2 1 1 = Developer Runbook (Quick Start and Tips) = 2 2 This 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 == 5 The 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 }}} 3 10 4 11 == Sub-module Initialization ==