Install Rust:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Install Node.js:
# installs nvm (Node Version Manager)
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.0/install.sh | bash
# download and install Node.js (you may need to restart the terminal)
nvm install 18
Install PNPM:
npm install -g pnpm
Before running the application, you need to install the dependencies:
pnpm run bootstrap
Then you can run the application:
pnpm run dev
To build the application:
pnpm run build