removed source:, added repository:

This commit is contained in:
Paul Gauthier 2024-06-05 15:04:17 -07:00
parent 4afc0be2e2
commit a37f8f5e95
3 changed files with 4 additions and 3 deletions

View file

@ -5,7 +5,7 @@ FROM bretfisher/jekyll-serve
WORKDIR /site WORKDIR /site
# Copy the current directory contents into the container at /srv/jekyll # Copy the current directory contents into the container at /srv/jekyll
COPY . /site COPY website /site
# Install any needed packages specified in Gemfile # Install any needed packages specified in Gemfile
RUN bundle install --retry 5 --jobs 20 RUN bundle install --retry 5 --jobs 20

View file

@ -3,7 +3,7 @@
# Run the Docker container # Run the Docker container
docker run \ docker run \
--rm \ --rm \
-v "$PWD:/site" \ -v "$PWD/website:/site" \
-p 4000:4000 \ -p 4000:4000 \
-e HISTFILE=/site/.bash_history \ -e HISTFILE=/site/.bash_history \
--entrypoint /bin/bash \ --entrypoint /bin/bash \

View file

@ -1,6 +1,5 @@
theme: just-the-docs theme: just-the-docs
url: "https://aider.chat" url: "https://aider.chat"
source: website
plugins: plugins:
- jekyll-redirect-from - jekyll-redirect-from
@ -32,3 +31,5 @@ nav_external_links:
url: "https://github.com/paul-gauthier/aider" url: "https://github.com/paul-gauthier/aider"
- title: "Discord" - title: "Discord"
url: "https://discord.gg/Tv2uQnR88V" url: "https://discord.gg/Tv2uQnR88V"
repository: paul-gauthier/aider