mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-05 13:03:09 +02:00
11 lines
250 B
Bash
Executable file
11 lines
250 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
sudo chown -R node /workspace
|
|
git submodule update --init
|
|
pnpm config set store-dir /home/node/.local/share/pnpm/store
|
|
pnpm install --frozen-lockfile
|
|
cp .devcontainer/devcontainer.yml .config/default.yml
|
|
pnpm build
|
|
pnpm migrate
|