diff --git a/.gitignore b/.gitignore index 50fae05..be735f9 100644 --- a/.gitignore +++ b/.gitignore @@ -43,6 +43,7 @@ yarn-error.log* *.tsbuildinfo # dbml -# TODO Remove before merging PR -#schema.dbml -#erd.svg +schema.dbml +erd.svg + +/myenv diff --git a/scripts/educations_parser/README.md b/scripts/educations_parser/README.md new file mode 100644 index 0000000..231a1b1 --- /dev/null +++ b/scripts/educations_parser/README.md @@ -0,0 +1,27 @@ +## How to use the parser + +1. Install python locally +2. Install and activate python virtual environment: + +```shell +python3 -m venv myenv +source myenv/bin/activate +``` + +3. Install requirements: + +```shell +pip3 install -r requirements.txt +``` + +4. Run the parser: + +```shell +python3 ./educations_parser.py +``` + +5. Deactivate the Virtual Environment + +```shell +deactivate +```