This commit is contained in:
2025-07-24 09:38:35 +02:00
parent d766cb72c8
commit 5539e67fde
109 changed files with 12778 additions and 1 deletions

26
install.sh Executable file
View File

@@ -0,0 +1,26 @@
#!/bin/bash
cd "$(dirname "$0")"
# Check if pnpm is installed
if ! command -v pnpm &> /dev/null
then
echo "pnpm not found, installing using the universal installer..."
# Check if curl is installed
if ! command -v curl &> /dev/null
then
echo "curl not found. Please install curl first."
exit 1
fi
# Check if sh is available
if ! command -v sh &> /dev/null
then
echo "sh not found. This script requires a shell interpreter."
exit 1
fi
curl -fsSL https://get.pnpm.io/install.sh | sh -
echo "Please restart your terminal or run 'source ~/.bashrc' (or equivalent) to add pnpm to your PATH."
else
echo "pnpm is already installed."
fi
pnpm install