Skip to content

Commit

Permalink
Update start_aider.sh - fix location of aider config files
Browse files Browse the repository at this point in the history
aider config files are located in /home/appuser as specified by the docker config, not in /root. Fixed in this PR.
  • Loading branch information
ColumbusAI authored Feb 16, 2025
1 parent c30d149 commit 5c6f136
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aider/start_aider.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ echo "Harbor: custom aider entrypoint"
python --version

echo "YAML Merger is starting..."
python /root/.aider/yaml_config_merger.py --pattern ".yml" --output "/root/.aider.conf.yml" --directory "/root/.aider"
python /home/appuser/.aider/yaml_config_merger.py --pattern ".yml" --output "/home/appuser/.aider.conf.yml" --directory "/home/appuser/.aider"

echo "Merged Configs:"
cat /root/.aider.conf.yml
cat /home/appuser/.aider.conf.yml

git config --global --add safe.directory /root/workspace

Expand Down

0 comments on commit 5c6f136

Please sign in to comment.