forked from paperswithcode/ai-deadlines
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy path_config.minimal.yml
More file actions
83 lines (75 loc) · 1.64 KB
/
_config.minimal.yml
File metadata and controls
83 lines (75 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# Minimal Configuration for Python Deadlines
# Ultra-fast build config - English only, no archive/legacy, minimal plugins
# Usage: bundle exec jekyll serve --config _config.yml,_config.minimal.yml
# Only English for fastest possible builds
languages: [ "en" ]
# Only process current conferences
page_gen:
- data: 'conferences'
template: 'conference'
dir: 'conference'
name_expr: record['conference'].downcase.strip.gsub(' ', '-').gsub(/[^\p{L}]+/, '-')+"-"+record['year'].to_s
title_expr: record['conference']+" "+record['year'].to_s+" Conference Deadlines"
# Minimal plugins - only essentials
plugins:
- jekyll-datapage-generator
- jekyll-multiple-languages-plugin
- jekyll-include-cache
# Maximum speed optimizations
incremental: true
profile: false
safe: false
liquid:
error_mode: lax
strict_filters: false
strict_variables: false
# Disable all external services
ga_id:
adsense_id:
maps:
google:
api_key:
# Don't process these at all
keep_files: ['.git', '.svn']
skip_config_files: false
# File watching
watch: true
force_polling: false
# Exclude everything non-essential
exclude:
- Gemfile
- Gemfile.lock
- node_modules
- vendor/
- utils/
- tests/
- "*.pyc"
- "*.pyo"
- ".pytest_cache"
- "__pycache__"
- ".coverage"
- "htmlcov/"
- ".git"
- ".github"
- "*.log"
- "*.tmp"
- ".DS_Store"
- "Thumbs.db"
- "_data/archive.yml"
- "_data/legacy.yml"
- "_i18n/es*"
- "_i18n/fr*"
- "_i18n/pt-br*"
- "_i18n/zh-cn*"
- "_i18n/hi*"
- "_i18n/id*"
- "_i18n/ru*"
- "_site/es"
- "_site/fr"
- "_site/pt-br"
- "_site/zh-cn"
- "_site/hi"
- "_site/id"
- "_site/ru"
- "crowdin.yml"
- "TRANSLATION.md"