mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-12-23 10:11:54 +00:00
12 lines
237 B
Bash
12 lines
237 B
Bash
#!/bin/sh
|
|
|
|
echo 🔧 Install Rust
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
export PATH=$PATH:/opt/buildhome/.cargo/bin
|
|
|
|
echo 🚧 Install Node dependencies
|
|
cd client/web
|
|
npm install
|
|
|
|
echo 👷 Build Graphite web client
|
|
npm run build
|