16 lines
319 B
Bash
16 lines
319 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Simple startup script for Email Alerts Application
|
||
|
|
# Server: 104.225.217.215
|
||
|
|
# Port: 5237
|
||
|
|
|
||
|
|
echo "🚀 Starting Email Alerts Application..."
|
||
|
|
|
||
|
|
# Activate virtual environment
|
||
|
|
source venv/bin/activate
|
||
|
|
|
||
|
|
# Install dependencies if needed
|
||
|
|
pip install -r requirements.txt
|
||
|
|
|
||
|
|
# Start the server
|
||
|
|
python run_server.py
|