a simple go program to search for certain folderstructures
finder gitand the programm will search for all folder which do have a .git directory.
- programm only uses
.json5files
// Windows → %AppData%\finder
// Linux → ~/.config/finder
// macOS → ~/Library/Application Support/findercreate a new struct there to search then for it via
finder <struct-name>// A default struct to find git Repositories
{
"name": "*",
// "files": ["*"],
"folders": [{
"name": ".git"
// "files":
// "folders":
}]
}
// if they are missing, means the default which means they dont matterFeel free to add more Default Templates for other Folderstructures from other software / projects / etc !!!
- Web Dashboard
- Indexing
- custom start dir for search
- dynamic templates
- faster search via coroutines
- add check comments in directories (to check for example for git repositories which have uncomitted files)