Files
Pumpkin/docs/about/quick-start.md
2024-09-02 20:10:13 +02:00

993 B

Quick Start

There are currently no release builds, because there was no release :D.

To get Pumpkin running you first have to clone it:

git clone https://github.com/Snowiiii/Pumpkin.git
cd Pumpkin

You also may have to install rust when you don't already have.

You can place a vanilla world into the Pumpkin/ directory when you want. Just name the World to world

Then run:

Note

This can take a while. Because we enabled heavy optimizations for release builds

To apply further optimizations specfic to your CPU and use your CPU features. You should set the target-cpu=native Rust flag.

cargo run --release

Docker

Experimental Docker support is available. The image is currently not published anywhere, but you can use the following command to build it:

docker build . -t pumpkin

To run it use the following command:

docker run --rm -v "./world:/pumpkin/world" pumpkin