Skip to content

Latest commit

 

History

History
41 lines (36 loc) · 3.21 KB

Development.md

File metadata and controls

41 lines (36 loc) · 3.21 KB

Development

To get started, here are all the tools you need:

Cloning Repository with GitHub Desktop

  1. Open this repository on GitHub and click Code > Copy url to clipboard. image
  2. Open GitHub Desktop and choose "Clone a repository from the Internet...". image
  3. Click the URL tab. image
  4. Paste the URL you copied into the upper text box. image
  5. Enter the directory where you would like to clone all the source files in the Local Path box and click Clone. image
  6. If you want to build/run a version not yet merged to the main branch, click Current branch and select the relevant branch. image

Cloning Repository with Git

  1. Open this repository on GitHub and click Code > Copy url to clipboard. image
  2. Using your preferred command line application, navigate to the directory where you would like the repository directory to be cloned.
  3. Type git clone followed by a space and the URL you copied, then press enter. image
  4. If you want to build/run a version not yet merged to the main branch, navigate to the repository directory that was just created and type git checkout --track remotes/origin/ followed by the name of the relevant branch, then press enter. image

Building & Running

  1. Open IntelliJ IDEA and click Open. image
  2. Select the repository directory and click OK. image
  3. Click the Run button or press Shift+F10. An EB Project Editor window should appear. image
  4. When you're done, click the Stop button, press Ctrl+F2, or just close the EB Project Editor window. image

Running the project in IntelliJ IDEA should also generate a distributable JAR file in the repository directory's target/ subdirectory. image