mirror of
https://github.com/Aider-AI/aider.git
synced 2026-02-02 11:33:14 +01:00
17 lines
453 B
Bash
Executable File
17 lines
453 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run the Docker container with optimizations for faster builds
|
|
docker run \
|
|
--rm \
|
|
-v "$PWD/aider/website:/site" \
|
|
-p 4000:4000 \
|
|
-e HISTFILE=/site/.bash_history \
|
|
-e JEKYLL_ENV=development \
|
|
-it \
|
|
my-jekyll-site bundle exec jekyll serve --host 0.0.0.0 $*
|
|
|
|
# Additional options:
|
|
# --incremental: Only rebuilds files that changed
|
|
# --livereload: Auto-refreshes browser when content changes
|
|
|