Skip to content

Latest commit

 

History

History
58 lines (52 loc) · 1.4 KB

README.md

File metadata and controls

58 lines (52 loc) · 1.4 KB

Install-Foundry

1-Installation Using Foundryup:

Open your terminal and install Foundryup by running the following command:

curl -L https://foundry.paradigm.xyz | bash

After the installation is complete, make the foundryup command available by following the on-screen instructions. 2-Installing Foundry VTT with Foundryup:

Install the latest (nightly) compiled binaries using the Foundryup command:

foundryup

3-Clone

git clone https://github.com/foundry-rs/foundry.git
cd foundry

Install-Foundry

After cloning the repository, run the following command to install the dependencies

Update forge packages

foundryup

Install or update dependencies

forge install

or Install-Foundry

Build from Source Code:

First, use rustup.rs to install the Rust compiler and Cargo package manager. Then, compile Foundry VTT from source code using the commands below:

# Clone
git clone https://github.com/foundry-rs/foundry.git
# Install Forge
cargo install --path ./crates/forge --profile local --force --locked
# Install Cast
cargo install --path ./crates/cast --profile local --force --locked
# Install Anvil
cargo install --path ./crates/anvil --profile local --force --locked
# Install Chisel
cargo install --path ./crates/chisel --profile local --force --locked