updated cogs to aider/website/

This commit is contained in:
Paul Gauthier 2024-07-05 10:13:54 -03:00
parent 05caccf3cc
commit 6c92dedac1
6 changed files with 14 additions and 14 deletions

View file

@ -19,13 +19,13 @@ You can give it an explicit file to load with the `--env-file <filename>` parame
Below is a sample `.env` file, which you
can also
[download from GitHub](https://github.com/paul-gauthier/aider/blob/main/website/assets/sample.env).
[download from GitHub](https://github.com/paul-gauthier/aider/blob/main/aider/website/assets/sample.env).
<!--[[[cog
from aider.args import get_sample_dotenv
from pathlib import Path
text=get_sample_dotenv()
Path("website/assets/sample.env").write_text(text)
Path("aider/website/assets/sample.env").write_text(text)
cog.outl("```")
cog.out(text)
cog.outl("```")