misc: add bootstrap script
This commit is contained in:
parent
013e95f766
commit
d58bcecc5d
100
navy.sh
Executable file
100
navy.sh
Executable file
|
@ -0,0 +1,100 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# This script is meant to be place at the root of any cutekit project.
|
||||||
|
# It will make sure that the virtual environment is set up and that the
|
||||||
|
# plugins requirements are installed.
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
function is_ubuntu() {
|
||||||
|
if [ -f /etc/os-release ]; then
|
||||||
|
grep -q "ubuntu" /etc/os-release
|
||||||
|
return $?
|
||||||
|
fi
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
|
if [ -z "$CUTEKIT_PYTHON" ]; then
|
||||||
|
export CUTEKIT_PYTHON="python3.11"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$CUTEKIT_VERSION" ]; then
|
||||||
|
export CUTEKIT_VERSION="0.7-dev"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "$CUTEKIT_NOVENV" ]; then
|
||||||
|
echo "CUTEKIT_NOVENV is set, skipping virtual environment setup."
|
||||||
|
exec cutekit $@
|
||||||
|
exit $?
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$1" == "tools" -a "$2" == "nuke" ]; then
|
||||||
|
rm -rf .cutekit/tools .cutekit/venv
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -f .cutekit/tools/ready ]; then
|
||||||
|
if [ ! \( "$1" == "tools" -a "$2" == "setup" \) ]; then
|
||||||
|
echo "CuteKit is not installed."
|
||||||
|
echo "This script will install cutekit into $PWD/.cutekit"
|
||||||
|
|
||||||
|
read -p "Do you want to continue? [Y/n] " -n 1 -r
|
||||||
|
echo
|
||||||
|
if [[ ! $REPLY =~ ^[Yy]$ ]] && [[ ! -z $REPLY ]]; then
|
||||||
|
echo "Aborting."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "Installing CuteKit..."
|
||||||
|
fi
|
||||||
|
|
||||||
|
mkdir -p .cutekit
|
||||||
|
if [ ! -d .cutekit/venv ]; then
|
||||||
|
echo "Setting up Python virtual environment..."
|
||||||
|
$CUTEKIT_PYTHON -m venv .cutekit/venv
|
||||||
|
fi
|
||||||
|
source .cutekit/venv/bin/activate
|
||||||
|
|
||||||
|
echo "Downloading CuteKit..."
|
||||||
|
if [ ! -d .cutekit/tools/cutekit ]; then
|
||||||
|
git clone --depth 1 https://github.com/cute-engineering/cutekit .cutekit/tools/cutekit --branch "$CUTEKIT_VERSION"
|
||||||
|
else
|
||||||
|
echo "CuteKit already downloaded."
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Installing Tools..."
|
||||||
|
$CUTEKIT_PYTHON -m pip install -e .cutekit/tools/cutekit
|
||||||
|
|
||||||
|
echo "Installing plugins requirements..."
|
||||||
|
if [ -f "meta/plugins/requirements.txt" ]; then
|
||||||
|
echo "Root plugin requirements found."
|
||||||
|
$CUTEKIT_PYTHON -m pip install -r meta/plugins/requirements.txt
|
||||||
|
fi
|
||||||
|
|
||||||
|
for extern in meta/externs/*; do
|
||||||
|
if [ -f "$extern/meta/plugins/requirements.txt" ]; then
|
||||||
|
echo "Plugin requirements found in $extern."
|
||||||
|
$CUTEKIT_PYTHON -m pip install -r "$extern/meta/plugins/requirements.txt"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if is_ubuntu; then
|
||||||
|
echo "Detected Ubuntu, installing dependencies automatically..."
|
||||||
|
sudo ./meta/scripts/setup-ubuntu.sh
|
||||||
|
fi
|
||||||
|
|
||||||
|
touch .cutekit/tools/ready
|
||||||
|
echo "Done!"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$1" == "tools" -a "$2" == "setup" ]; then
|
||||||
|
echo "Tools already installed."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
source .cutekit/venv/bin/activate
|
||||||
|
export PATH="$PATH:.cutekit/venv/bin"
|
||||||
|
|
||||||
|
$CUTEKIT_PYTHON -m cutekit $@
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue