diff --git a/.DS_Store b/.DS_Store index 397e489..8f85fa9 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/sij b/sij new file mode 100755 index 0000000..937e247 --- /dev/null +++ b/sij @@ -0,0 +1,23 @@ +#!/bin/bash + +# Set the path to the script +SCRIPT_PATH="$HOME/workshop/sijapi/sijapi/helpers/start.py" + +# Check if the script exists +if [ ! -f "$SCRIPT_PATH" ]; then + echo "Error: Script not found at $SCRIPT_PATH" + exit 1 +fi + +# Set up the environment +source "$HOME/workshop/sijapi/sijapi/config/.env" + +# Activate the conda environment (adjust the path if necessary) +source "$HOME/miniforge3/bin/activate" sijapi + +# Run the Python script +python "$SCRIPT_PATH" + +# Deactivate the conda environment +conda deactivate +