Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,23 @@
## Prerequisites

- [Node.js](https://nodejs.org/) (LTS)
- [.NET 9 SDK](https://dotnet.microsoft.com/download/dotnet/9.0)
- [.NET 10 SDK](https://dotnet.microsoft.com/download/dotnet/10.0)
- [Tauri prerequisites](https://v2.tauri.app/start/prerequisites/) (Rust toolchain, platform-specific dependencies)

## Setup

Clone the repo and install npm dependencies:

```bash
git clone https://github.com/unitystation/PuduLauncher.git
git clone https://github.com/unitystation/PuduLauncher.git --recursive
cd PuduLauncher
npm install
```

> [!NOTE]
> If you already cloned without recursive submodules, (eg. you'll get an error when running `generate-ts` that DiscordRPC doesn't exist)
> You can run `git submodule update --init --recursive` to install submodules

Generate TypeScript types and API clients from the C# source:

```bash
Expand Down
Loading