Professionelle Mediation und Konfliktlösung durch Anne-Ruth Moltmann-Willisch, LL.M. Ehemalige Richterin am Landgericht mit langjähriger Erfahrung in Mediation und Schlichtung.
The system currently has Ruby 2.6.10 installed. For optimal Jekyll development, we recommend:
# Install rbenv
brew install rbenv
# Install Ruby 3.1
rbenv install 3.1.0
rbenv local 3.1.0
# Install dependencies
bundle install
# Run development server
bundle exec jekyll serve
# Create docker-compose.yml
cat > docker-compose.yml << 'EOF'
version: '3'
services:
jekyll:
image: jekyll/jekyll:4
command: jekyll serve --watch --force_polling --host 0.0.0.0
ports:
- 4000:4000
volumes:
- .:/srv/jekyll
environment:
- JEKYLL_ENV=development
EOF
# Run with Docker
docker-compose up
Once setup is complete, the website should be available at:
The development server will automatically rebuild when files change:
_sass/_config.yml (requires server restart)--port 4001To test the exact GitHub Pages environment:
# Install github-pages gem
gem install github-pages
# Serve with GitHub Pages gem
github-pages serve