Skip to content

Commit f42217d

Browse files
committed
feat: add setting up dev env guide
Signed-off-by: ItsNeil17 <neil@willofsteel.me>
1 parent 77a9abd commit f42217d

1 file changed

Lines changed: 16 additions & 4 deletions

File tree

content/docs/en/guides/setting-up-env.mdx

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,19 @@ git --version
8484

8585
## Setting Up Your Workspace
8686

87-
### 1. Clone the Plugin Template
87+
### 1. Add HytaleServer.jar Dependency
88+
89+
Before you can start modding, you need to add the HytaleServer.jar file as a dependency:
90+
91+
1. **Download HytaleServer.jar** using the [Hytale Downloader](link-to-hytale-support-guide)
92+
2. **Add to IntelliJ IDEA**:
93+
- Click on **"File"** at the top left
94+
- Go to **"Project Structure"**
95+
- Go to **"Libraries"**
96+
- Click on the **+ icon**
97+
- Select the **HytaleServer.jar** you downloaded
98+
99+
### 2. Clone the Plugin Template
88100

89101
Instead of creating an empty directory, we'll use the official Hytale plugin template:
90102

@@ -94,7 +106,7 @@ git clone https://github.com/HytaleModding/plugin-template.git MyFirstMod
94106
cd MyFirstMod
95107
```
96108

97-
### 2. Configure the Project
109+
### 3. Configure the Project
98110

99111
Remove the existing Git history and initialize your own:
100112

@@ -108,7 +120,7 @@ git add .
108120
git commit -m "Initial commit from plugin template"
109121
```
110122

111-
### 3. Configure Git Identity
123+
### 4. Configure Git Identity
112124

113125
Set up your Git identity for future commits:
114126

@@ -117,7 +129,7 @@ git config --global user.name "Your Name"
117129
git config --global user.email "your.email@example.com"
118130
```
119131

120-
### 4. Open in IntelliJ IDEA
132+
### 5. Open in IntelliJ IDEA
121133

122134
1. Open IntelliJ IDEA
123135
2. Click "Open" and navigate to your `MyFirstMod` directory

0 commit comments

Comments
 (0)