mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
`/client/web` -> `/frontend` `/client/cli` -> *delete for now* `/client/native` -> *delete for now* `/core/editor` -> `/editor` `/core/document` -> `/graphene` `/core/renderer` -> `/charcoal` `/core/proc-macro` -> `/proc-macros` *(now plural)*
13 lines
235 B
Bash
13 lines
235 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 frontend
|
|
npm install
|
|
|
|
echo 👷 Build Graphite web client
|
|
npm run build
|