File: bootstrap

package info (click to toggle)
awesomeversion 25.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,304 kB
  • sloc: python: 2,411; sh: 146; makefile: 5
file content (18 lines) | stat: -rwxr-xr-x 372 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# script/bootstrap: Install/update all dependencies required to run the project

set -e

cd "$(dirname "$0")/.."

echo "==> Installing uv if not present..."
if ! command -v uv >/dev/null 2>&1; then
  echo "UV not found, re-build the devcontainer..."
  exit 1
fi

echo "==> Installing dependencies..."
uv sync --dev --all-extras

echo "==> Bootstrap completed!"