Files
misskey/.devcontainer/init.sh
T

12 lines
250 B
Bash
Raw Normal View History

2023-02-12 09:07:56 +09:00
#!/bin/bash
set -xe
sudo chown -R node /workspace
2023-02-12 09:07:56 +09:00
git submodule update --init
pnpm config set store-dir /home/node/.local/share/pnpm/store
2023-02-12 09:07:56 +09:00
pnpm install --frozen-lockfile
cp .devcontainer/devcontainer.yml .config/default.yml
pnpm build
pnpm migrate