summaryrefslogtreecommitdiff
path: root/.devcontainer/init.sh
blob: bcad3e6d852730e4e5e328fe818fb4fd7ea22429 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/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