-
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 (26 loc) · 832 Bytes
/
start.sh
File metadata and controls
executable file
·31 lines (26 loc) · 832 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
set -euo pipefail
# ====================================================================
#
# Exo Proxy Fortress - Quick Start
#
# ====================================================================
echo "🚀 Exo Proxy Fortress"
echo "===================="
echo
# Check if .env exists
if [[ ! -f ".env" ]]; then
echo "📝 First time setup required..."
./setup.sh
fi
echo "🐳 Starting services with Docker..."
docker-compose up -d
echo
echo "✅ Exo Proxy Fortress is starting!"
echo
echo "🌐 Access the web interface at: http://localhost:$(grep PROXY_PORT .env | cut -d'=' -f2 | tr -d '"')"
echo "👤 Default admin login: admin / (password from setup)"
echo
echo "📊 View logs: docker-compose logs -f app"
echo "🛑 Stop services: docker-compose down"
echo "🔄 Restart: docker-compose restart"