File size: 371 Bytes
6e44555 8198ac5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/bash
# This script is used to launch the LogViewer application.
# It is recommended to create and activate a virtual environment before running.
# For example:
# python -m venv .venv
# source .venv/bin/activate
# Get the directory where this script is located.
SCRIPT_DIR=$(dirname -- "$0")
# Run the main application file.
python "$SCRIPT_DIR/logviewer/app.py" |