-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
40 lines (35 loc) · 1.49 KB
/
setup.sh
File metadata and controls
40 lines (35 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/bash
# Claude Context System Installer v1.0
# ====================================
clear
echo ""
echo "╔═══════════════════════════════════════════════════════════╗"
echo "║ ║"
echo "║ 🔗 Claude Context System Installer v1.0 ║"
echo "║ ║"
echo "║ Transform your AI workflow with seamless context ║"
echo "║ management between Claude Desktop and Notion ║"
echo "║ ║"
echo "╚═══════════════════════════════════════════════════════════╝"
echo ""
sleep 2
# Colors for output
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
NC='\033[0m' # No Color
echo "[1/6] Checking system requirements..."
echo "====================================="
# Check Node.js installation
echo -n "-> Checking Node.js..."
if command -v node &> /dev/null; then
NODE_VERSION=$(node --version)
echo -e " ${GREEN}[✅] Node.js $NODE_VERSION detected${NC}"
else
echo -e " ${RED}[❌] Node.js is not installed!${NC}"
echo ""
echo "Please install Node.js 16.0 or higher from:"
echo "https://nodejs.org/"
echo ""
exit 1
fi