AzerothCore-website/start_website.sh
2026-05-26 13:29:32 -06:00

13 lines
238 B
Bash
Executable file

#!/bin/bash
# Navigate to the project directory
cd /root/AzerothCore-website
# Activate the virtual environment
source venv/bin/activate
# Run the Flask app
python3 website.py
# Deactivate the virtual environment when done
deactivate