diff --git a/.gitignore b/.gitignore index 4e73720..af3d10f 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,5 @@ generated_cv* .vscode chrome_profile answers.json +virtual/ +data_folder/ diff --git a/run_cmd.sh b/run_cmd.sh new file mode 100644 index 0000000..fc5ce0d --- /dev/null +++ b/run_cmd.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +resume_file=$1 # No spaces around the '=' sign + +# Add the src directory to PYTHONPATH +export PYTHONPATH=$PYTHONPATH:$(pwd)/src + +# Run the Python script with the specified resume file +if [ -z "$resume_file" ]; then # Check if resume_file is empty + python main.py +else + python main.py --resume "$resume_file" +fi