forked from derisk-ai/OpenDerisk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstart.sh
More file actions
executable file
·31 lines (25 loc) · 760 Bytes
/
start.sh
File metadata and controls
executable file
·31 lines (25 loc) · 760 Bytes
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
#!/bin/bash
# DeRisk Quick Start Script
# This script starts DeRisk server with zero configuration
set -e
echo "🚀 Starting DeRisk Server..."
echo ""
# Check if virtual environment exists
if [ -d ".venv" ]; then
source .venv/bin/activate
echo "✓ Activated virtual environment"
fi
# Start the server
echo "✓ Starting with zero configuration"
echo "✓ Service will be available at: http://localhost:7777"
echo ""
echo "After starting, you can:"
echo " 1. Open http://localhost:7777 in your browser"
echo " 2. Configure models through the web UI"
echo " 3. All configurations will be saved automatically"
echo ""
echo "Press Ctrl+C to stop the server"
echo "================================"
echo ""
# Run the server
derisk quickstart "$@"