Skip to content

Configure your palworld server with easy sliders, toggles, and text boxes.

License

Notifications You must be signed in to change notification settings

Anthony-Mariotti/palworld-server-configurator

Repository files navigation

Palworld Server Configurator

Configure your palworld server with easy sliders, toggles, and text boxes. No more finding and searching a large configuration file just to change one setting.

Desktop version is currently unavailable at this time. GitHub Actions needs to be configured in order to build and release the installers. Cloning, building, and running the desktop app is still fully available if you would like to test drive the desktop app.

Developing

You will need to install Rust and system dependencies. This project uses Tauri to create the desktop version and is a requirement to build.

Prerequisites

Follow Tauri Prerequisites Guide to get your machine ready for development.

Starting the project

Once you've completed the prerequisites and installed dependencies with pnpm install, start the development app or web server:

# starts the desktop app
pnpm tauri dev

# or start the server and open the app in a new browser tab
pnpm run dev -- --open

Building

To create a production version:

# desktop app
pnpm tauri build

# or web app
pnpm run build

You can preview the web app production build with pnpm run preview.