Google Drive folders

Entire Google Drive folders containing markdown, .docx, and text files can be indexed with the DirectoryIndexer. This involves downloading an extracting a zip file from Google Drive, and configuring an instance of DirectoryIndexer.

const googleDriveIndexer = new DirectoryIndexer(catalog, {
  rootDir: "./path/to/local/google/drive/folder",
  // only include docx files
  includeFile(filePath) {
    return filePath.endsWith(".docx");
  },
});
 
await googleDriveIndexer.index();

Roadmap

A Good Drive integration that automates indexing repos from your organziation is under active development.