mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-09-13 07:22:35 +03:00
13 lines
318 B
Bash
Executable File
13 lines
318 B
Bash
Executable File
#!/bin/bash
|
|
|
|
WORK_DIR="$(dirname "$0")"
|
|
PROJECT_DIR="$(dirname "$WORK_DIR")"
|
|
|
|
uv --version >/dev/null 2>&1 || {
|
|
echo >&2 -e "\nuv is required but it's not installed."
|
|
echo >&2 -e "You can install it by following the instructions at https://github.com/astral-sh/uv#installation"
|
|
exit 1;
|
|
}
|
|
|
|
uv sync --locked
|