Compare commits

..

3 Commits

Author SHA1 Message Date
de7dc817aa update gitgnore re: requirements 2024-04-26 12:39:20 +01:00
ebc7a2599d update docs for added default ignored dir '.git' 2024-04-26 12:38:45 +01:00
71092daee0 added '.git' to IGNORE_DIRS 2024-04-26 12:37:49 +01:00
4 changed files with 10 additions and 3 deletions

3
.gitignore vendored
View File

@@ -140,6 +140,9 @@ mkdocs.yml
# vangef # vangef
requirements.*.txt
!requirements.txt
___*.py ___*.py
venv* venv*
.TODO .TODO

View File

@@ -22,10 +22,12 @@ Optionally, you can inspect the submissions for identical files (by generating a
- `__MACOSX` (macOS system generated files) - `__MACOSX` (macOS system generated files)
- `vendor` (composer / laravel) - `.git` (git repo files)
- `node_modules` (npm) - `node_modules` (npm)
- `vendor` (composer / laravel)
- Deletes each compressed file after successful extraction into student directory - Deletes each compressed file after successful extraction into student directory
- Organises per student any remaining individually submitted files - Organises per student any remaining individually submitted files

View File

@@ -30,10 +30,12 @@ Ignored directories by default:
- `__MACOSX` (macOS system generated files) - `__MACOSX` (macOS system generated files)
- `vendor` (composer / laravel) - `.git` (git repo files)
- `node_modules` (npm) - `node_modules` (npm)
- `vendor` (composer / laravel)
## **Download gradebook** ## **Download gradebook**
1. Go to the course page on Blackboard 1. Go to the course page on Blackboard

View File

@@ -5,4 +5,4 @@ BB_GRADEBOOKS_DIR = 'BB_gradebooks' # directory with extracted gradebooks downl
BB_SUBMISSIONS_DIR = 'BB_submissions' # directory with organised gradebook submissions BB_SUBMISSIONS_DIR = 'BB_submissions' # directory with organised gradebook submissions
BAD_DIR_NAME = '__BAD__' # for organise_gradebook.py - directory with corrupt/invalid compressed files BAD_DIR_NAME = '__BAD__' # for organise_gradebook.py - directory with corrupt/invalid compressed files
CSV_DIR = os.path.join(os.getcwd(), 'csv-inspect') # for inspect_gradebook.py and inspect_submissions.py - output dir for generated CSV files CSV_DIR = os.path.join(os.getcwd(), 'csv-inspect') # for inspect_gradebook.py and inspect_submissions.py - output dir for generated CSV files
IGNORE_DIRS = [ '__MACOSX', 'vendor', 'node_modules' ] # list of dir names to ignore from extracting IGNORE_DIRS = [ '__MACOSX', '.git', 'node_modules', 'vendor' ] # list of dir names to ignore from extracting