├── README.md └── bin └── install.sh /README.md: -------------------------------------------------------------------------------- 1 | # yacy_grid_framework 2 | Starting Point for a local YaCy Grid 3 | -------------------------------------------------------------------------------- /bin/install.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | cd "`dirname $0`" 3 | 4 | cd ../.. 5 | git clone https://github.com/yacy/yacy_grid_mcp.git 6 | git clone --recursive https://github.com/yacy/yacy_grid_crawler.git 7 | git clone --recursive https://github.com/yacy/yacy_grid_loader.git 8 | git clone --recursive https://github.com/yacy/yacy_grid_parser.git 9 | git clone https://github.com/yacy/yacy_webclient_bootstrap.git 10 | ./yacy_grid_mcp/bin/update_all.sh 11 | --------------------------------------------------------------------------------