- 🗓️ Date:
- 🗓️ Last modified:
- ⏱️ Time to read:
Table of Contents
graph TD
subgraph Creating content
A>Draft content in Markdown files] --> B>Add meta-info: topics, tags, categories, date]
B --> C(Git Push to sync changes)
end
C --> D[(Changes saved to repository on GitLab Cloud)]
subgraph netlify [Netlify Cloud]
E([Netlify Pulls latest content from GitLab])
F([CI/CD Pipeline Initiated])
F --> G[[Install and run Hugo]]
G --> H[[Hugo transforms content into full website]]
H --> I((Publish and make site live on Netlify URL))
I --> J[[Audit Site for Performance, Accessibility, SEO]]
end
D --> E
I <--> K[Custom domain ashwinhariharan.com connected to Netlify URL]
K <--> L([User Visits ashwinhariharan.com, gets served web page])
style A fill:#f9f,stroke:#333,stroke-width:2px
style I fill:#9f9,stroke:#333,stroke-width:2px