The full site build with all languages and historical data can take a long time. We provide several development configurations for faster iteration:
# Full production build (all languages, all data) - SLOW
pixi run serve
# Development build (English + German, no archive/legacy) - FAST
pixi run serve-dev
# Minimal build (English only, minimal plugins) - FASTEST
pixi run serve-minimal
# Fast incremental build (skips initial build)
pixi run serve-fast| Command | Languages | Archive/Legacy | Plugins | Build Time |
|---|---|---|---|---|
serve |
All 9 | Yes | All | ~3-5 minutes |
serve-dev |
EN, DE | No | Most | ~30-45 seconds |
serve-minimal |
EN only | No | Minimal | ~15-20 seconds |
serve-fast |
EN, DE | No | Most | ~10 seconds (incremental) |
_config.yml- Main production configuration_config.dev.yml- Development config (EN+DE, no historical data)_config.minimal.yml- Minimal config (EN only, bare essentials)
Jekyll allows layering configurations using the --config flag:
jekyll serve --config _config.yml,_config.dev.ymlLater configs override earlier ones, so _config.dev.yml overrides specific settings from _config.yml.
Development Mode (serve-dev):
- Languages: Only English and German
- Archive data: Not processed
- Legacy data: Not processed
- Some plugins: Sitemap disabled
- Analytics: Disabled
Minimal Mode (serve-minimal):
- Languages: Only English
- Only current conferences processed
- Minimal plugins (no SEO, maps, sitemap)
- All other languages excluded from file watching
- Maximum speed optimizations
serve- Final testing before deployment, checking all languagesserve-dev- General development, testing featuresserve-minimal- Quick iterations, CSS/JS developmentserve-fast- Continuous development with auto-reload
-
Use minimal mode for CSS/JS work:
pixi run serve-minimal
-
Skip link checking when sorting:
pixi run sort # Uses --skip_links by default -
Use incremental builds:
pixi run serve-fast
-
Exclude files from watch: Add large files or directories to
exclude:in dev configs -
Clear Jekyll cache if builds are slow:
rm -rf _site .jekyll-cache
You can create your own config for specific needs:
# _config.custom.yml
languages: [ "en", "es" ] # Your preferred languages
page_gen:
# Your custom page generation rulesThen use it:
bundler exec jekyll serve --config _config.yml,_config.custom.ymlBuild still slow?
- Clear cache:
rm -rf _site .jekyll-cache - Check for large files in
_data/ - Use
--profileflag to identify bottlenecks
Missing content in dev mode?
- Check which config you're using
- Archive/legacy conferences won't appear in dev mode
- Some languages are excluded
Changes not appearing?
- Restart Jekyll if you modify
_config*.yml - Check if files are excluded in the config
- Try without
--incrementalflag