-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_config.yml
More file actions
100 lines (82 loc) · 3.7 KB
/
Copy path_config.yml
File metadata and controls
100 lines (82 loc) · 3.7 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# ================================================================
# _config.yml — GitHub Pages / Jekyll configuration
# Portfolio: Ujas Jayeshkumar Dubal
# ================================================================
# ── Site Identity ──────────────────────────────────────────────
title: "Ujas Dubal — AWS Data Engineer"
description: "AWS Data Engineer and Technical Lead with 8.5+ years
building cloud-native data pipelines using Python,
PySpark, Redshift, Glue, Airflow and Databricks.
Based in Ahmedabad, Gujarat, India."
author: "Ujas Jayeshkumar Dubal"
email: "ujasdubal+portfolio@gmail.com"
url: "https://ujas-dev.github.io"
baseurl: ""
# ── SEO / Social ───────────────────────────────────────────────
lang: "en-IN"
locale: "en_IN"
timezone: "Asia/Kolkata"
twitter:
username: "ujasdubal"
card: summary_large_image
social:
name: "Ujas Jayeshkumar Dubal"
links:
- "https://www.linkedin.com/in/ujasdubal"
- "https://github.com/ujas-dev"
# ── GitHub Pages — disable Jekyll processing ───────────────────
# Our portfolio is a plain HTML file — we do NOT want Jekyll
# to process, transform or wrap index.html in any layout.
# This tells GitHub Pages to serve files exactly as-is.
plugins: []
# Exclude everything except the files we actually want served
include:
- index.html
- README.md
- _config.yml
- assets/
- Ujas_Dubal_DataEngineer_8_5_Years_Exp.pdf
- .github/
exclude:
- "*.sh"
- "*.py"
- "*.rb"
- Gemfile
- Gemfile.lock
- node_modules/
- vendor/
- .sass-cache/
- .jekyll-cache/
- .jekyll-metadata
# ── Jekyll Build Settings ──────────────────────────────────────
# Safe mode — disables custom plugins (required for GitHub Pages)
safe: true
# Do not use a theme — we have our own full CSS
theme: ~
# Disable Sass processing — we write plain CSS
sass:
style: compressed
# Do not generate a sitemap via jekyll-sitemap plugin
# (our JSON-LD structured data handles SEO signals directly)
# ── Markdown ───────────────────────────────────────────────────
markdown: kramdown
kramdown:
input: GFM
hard_wrap: false
# ── Collections (none needed — single-file portfolio) ──────────
collections: {}
# ── Defaults ───────────────────────────────────────────────────
defaults:
- scope:
path: ""
values:
layout: null
# ── Performance ────────────────────────────────────────────────
# Disable liquid processing on all HTML files so GitHub Pages
# does not try to parse {{ }} or {% %} tags inside index.html
# (Three.js / JS template literals can conflict with Liquid)
render_with_liquid: false
# ── Analytics placeholder ─────────────────────────────────────
# Uncomment and fill in if you add Google Analytics later
# google_analytics: "G-XXXXXXXXXX"
# ── END ────────────────────────────────────────────────────────