diff --git a/sherlock/.gitignore b/sherlock/.gitignore index 503304d..f6a8ac7 100644 --- a/sherlock/.gitignore +++ b/sherlock/.gitignore @@ -1 +1,21 @@ -data/*.json \ No newline at end of file + +# Created by https://www.toptal.com/developers/gitignore/api/rust +# Edit at https://www.toptal.com/developers/gitignore?templates=rust + +### Rust ### +# Generated by Cargo +# will have compiled files and executables +debug/ +target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html +Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb + +# End of https://www.toptal.com/developers/gitignore/api/rust \ No newline at end of file diff --git a/sherlock/training/.gitignore b/sherlock/training/.gitignore new file mode 100644 index 0000000..503304d --- /dev/null +++ b/sherlock/training/.gitignore @@ -0,0 +1 @@ +data/*.json \ No newline at end of file diff --git a/sherlock/data/.gitkeep b/sherlock/training/data/.gitkeep similarity index 100% rename from sherlock/data/.gitkeep rename to sherlock/training/data/.gitkeep diff --git a/sherlock/requirements.txt b/sherlock/training/requirements.txt similarity index 100% rename from sherlock/requirements.txt rename to sherlock/training/requirements.txt diff --git a/sherlock/scraper.py b/sherlock/training/scraper.py similarity index 100% rename from sherlock/scraper.py rename to sherlock/training/scraper.py diff --git a/sherlock/visualize.ipynb b/sherlock/training/visualize.ipynb similarity index 100% rename from sherlock/visualize.ipynb rename to sherlock/training/visualize.ipynb