Initial commit: Vault Party UI (massuus)

This commit is contained in:
Sam van Remortel
2026-05-24 15:52:40 +02:00
commit 5a6bb2c2fb
23 changed files with 999 additions and 0 deletions

13
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Attach to Forge Client",
"request": "attach",
"hostName": "localhost",
"port": 5005,
"preLaunchTask": "runClientDebug"
}
]
}

4
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,4 @@
{
"java.compile.nullAnalysis.mode": "automatic",
"java.configuration.updateBuildConfiguration": "automatic"
}

61
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,61 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "runClient",
"type": "shell",
"command": "${workspaceFolder}\\gradlew.bat",
"args": ["runClient"],
"group": "build",
"problemMatcher": []
},
{
"label": "runClientDebug",
"type": "shell",
"command": "${workspaceFolder}\\gradlew.bat",
"args": ["runClient", "--debug-jvm"],
"group": "build",
"isBackground": true,
"problemMatcher": {
"owner": "gradle-debug",
"pattern": {
"regexp": "^$"
},
"background": {
"activeOnStart": true,
"beginsPattern": ".*",
"endsPattern": "Listening for transport dt_socket at address: 5005"
}
}
}
,
{
"label": "build",
"type": "shell",
"command": "${workspaceFolder}\\gradlew.bat",
"args": ["build"],
"group": "build",
"problemMatcher": []
},
{
"label": "deployToCurseForge",
"type": "shell",
"command": "${workspaceFolder}\\scripts\\deploy.ps1",
"args": [],
"options": {
"shell": {
"executable": "powershell",
"args": ["-NoProfile", "-ExecutionPolicy", "Bypass", "-File"]
}
},
"problemMatcher": []
},
{
"label": "build-and-deploy",
"type": "shell",
"dependsOn": ["build", "deployToCurseForge"],
"group": "build",
"problemMatcher": []
}
]
}