{"id":22065890,"url":"https://github.com/astrocvijo/indexer_2","last_synced_at":"2026-01-25T15:02:51.807Z","repository":{"id":238109879,"uuid":"795886496","full_name":"AStroCvijo/Indexer_2","owner":"AStroCvijo","description":"A CLI tool that indexes a given folder and allows efficient searching for string occurrences.","archived":false,"fork":false,"pushed_at":"2024-08-30T13:35:39.000Z","size":376,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-11T15:31:59.678Z","etag":null,"topics":["automation","cli","indexing","kotlin","string-search"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AStroCvijo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-05-04T10:51:46.000Z","updated_at":"2024-12-01T00:23:19.000Z","dependencies_parsed_at":"2024-05-04T12:21:50.040Z","dependency_job_id":"c8f6428f-1d17-4553-a85c-e66c3ef95164","html_url":"https://github.com/AStroCvijo/Indexer_2","commit_stats":null,"previous_names":["astrocvijo/indexer_2"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AStroCvijo/Indexer_2","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AStroCvijo%2FIndexer_2","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AStroCvijo%2FIndexer_2/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AStroCvijo%2FIndexer_2/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AStroCvijo%2FIndexer_2/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AStroCvijo","download_url":"https://codeload.github.com/AStroCvijo/Indexer_2/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AStroCvijo%2FIndexer_2/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28754807,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T13:59:49.818Z","status":"ssl_error","status_checked_at":"2026-01-25T13:59:33.728Z","response_time":113,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","cli","indexing","kotlin","string-search"],"created_at":"2024-11-30T19:22:26.488Z","updated_at":"2026-01-25T15:02:51.725Z","avatar_url":"https://github.com/AStroCvijo.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# File Indexer - CLI tool\nA CLI tool that indexes a given folder and allows efficient searching for string occurrences. \u003cbr /\u003e\u003cbr /\u003e\nDate of creation: May, 2024 \u003cbr/\u003e\n\n## Instructions\n\n1. Clone the repository `git clone https://github.com/AStroCvijo/Indexer_2`\n2. Set up `allowedExtensions.txt` file in the root directory e.g.\n```txt\n\n  txt\n  kt\n  py\n\n```\n3. Open the project in IntelliJ IDEA\n4. Run the project in IntelliJ IDEA (this will run the app without command line arguments)\n5. Copy the command that IntelliJ IDEA used to run the app (you can find it in the bottom window), should look like this `C:........MainKT`\n6. Open the terminal and navigate to the repository\n7. Paste the command you coppied (`C:........MainKT`)\n8. Add command line arguments and run the app\n\n\n## Arguments guide \n\n`-path or -p` followed by path to the folder you want to index e.g. `.\\\\Data`\nThis will index the `.\\\\Data` folder and save it to `.\\\\indexedFolders` (the starting location of .\\\\\\ is inside the app folder, so either move to folder you want to index there or navigate to it)\n\n`-force or -f`\nThis will force the app to index the folder again and save it to `.\\\\indexedFolders` (if you don't force a re-index, and the folder has already been indexed, the app will just load it)\n\n`-query or -q`\nThis will indicate that you want to query the folder after indexing\n\n`-case or -c`\nThis will indicate that you want the search to be case-sensitive\n\n`-highlight or -h`\nThis will print the line in which the string is located and highlight it\n\n## Examples\n\n| Command                                       | Description                                                          |\n|-----------------------------------------------|----------------------------------------------------------------------|\n| `C:........MainKT -p .\\\\Data`                 | Index a Folder Without Re-indexing or Querying                       |\n| `C:........MainKT -p .\\\\Data -f`              | Index a Folder and Force Re-indexing                                 |\n| `C:........MainKT -p .\\\\Data -q`              | Index a Folder and Query Without Case Sensitivity                    |\n| `C:........MainKT -p .\\\\Data -q -h`           | Index a Folder, Query Without Case Sensitivity and Highlight         |\n| `C:........MainKT -p .\\\\Data -f -q`           | Index a Folder, Force Re-indexing, and Query Without Case Sensitivity|\n| `C:........MainKT -p .\\\\Data -q -c`           | Index a Folder, Query with Case Sensitivity                          |\n| `C:........MainKT -p .\\\\Data -f -q -c`        | Index a Folder, Force Re-indexing, and Query with Case Sensitivity   |\n| `C:........MainKT -p .\\\\Documents -q`         | Index a Different Folder and Query Without Case Sensitivity          |\n| `C:........MainKT -p .\\\\AnotherFolder -f -q -c`| Index a Folder, Force Re-indexing, and Perform Case-sensitive Search |\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fastrocvijo%2Findexer_2","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fastrocvijo%2Findexer_2","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fastrocvijo%2Findexer_2/lists"}