11 lines
115 B
Text
11 lines
115 B
Text
|
|
#!/bin/sh -eu
|
||
|
|
|
||
|
|
cd "$RUN_DIR"
|
||
|
|
|
||
|
|
[ -z "${DEBUG:-}" ] || set -x
|
||
|
|
|
||
|
|
poetry install --with=dev --sync
|
||
|
|
|
||
|
|
cd unwind-ui
|
||
|
|
npm ci
|