mirror of
https://github.com/Azure-Samples/graphrag-accelerator.git
synced 2025-06-27 04:39:57 +00:00
22 lines
499 B
Bash
Executable File
22 lines
499 B
Bash
Executable File
#!/bin/bash
|
|
|
|
################################
|
|
### Docker configuration ###
|
|
################################
|
|
sudo chmod 666 /var/run/docker.sock
|
|
|
|
################################
|
|
### Dependency configuration ###
|
|
################################
|
|
|
|
# Install graphrag dependencies
|
|
cd /graphrag-accelerator
|
|
poetry install --no-interaction -v
|
|
|
|
#########################
|
|
### Git configuration ###
|
|
#########################
|
|
|
|
git config --global --add safe.directory /graphrag-accelerator
|
|
pre-commit install
|