Skip to content

Commit 6331a76

Browse files
authored
Merge pull request #6725 from CharlieTLe/init-blog
Setup blog with first post
2 parents 707f2f1 + 503d22e commit 6331a76

File tree

3 files changed

+50
-1
lines changed

3 files changed

+50
-1
lines changed

website/config.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,15 @@ defaultContentLanguageInSubdir = false
1616
# Useful when translating.
1717
enableMissingTranslationPlaceholders = true
1818

19-
disableKinds = ["taxonomy", "taxonomyTerm"]
19+
disableKinds = []
20+
[taxonomies]
21+
tag = "tags"
22+
category = "categories"
23+
project = "projects"
24+
[params.taxonomy]
25+
taxonomyCloud = ["projects", "tags"] # set taxonomyCloud = [] to hide taxonomy clouds
26+
taxonomyCloudTitle = ["Our Projects", "Tag Cloud"] # if used, must have same length as taxonomyCloud
27+
taxonomyPageHeader = ["tags", "categories"] # set taxonomyPageHeader = [] to hide taxonomies on the page headers
2028

2129
# Highlighting config
2230
pygmentsCodeFences = true
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
date: 2025-04-26
3+
title: "Introducing the Cortex Blog: Sharing Our Journey"
4+
linkTitle: Hello Cortex!
5+
tags: [ "blog", "cortex", "community", "updates" ]
6+
categories: [ "blog" ]
7+
projects: [ "cortex" ]
8+
description: >
9+
Welcome to the Cortex blog! We're excited to share updates, best practices, and community highlights around everything Cortex. Stay tuned for technical deep-dives, deployment strategies, and more.
10+
author: Charlie Le ([@charlietle](https://twitter.com/charlietle))
11+
---
12+
13+
Welcome to the official Cortex blog!
14+
15+
We’re kicking things off here to share updates, best practices,
16+
technical deep-dives, and community highlights around everything Cortex.
17+
Whether you're operating a Cortex cluster, integrating it into your observability platform,
18+
or just starting to explore scalable time-series databases — you're in the right place.
19+
20+
In the coming weeks, you can expect posts on:
21+
- Real-world Cortex deployment strategies and lessons learned
22+
- Tips for running Cortex efficiently at scale
23+
- Deep dives into key Cortex concepts like blocks storage, ruler sharding, and query federation
24+
- Guides to help new contributors get involved with the project
25+
- Interviews with maintainers and users from across the community
26+
- Roadmap insights and upcoming features we're excited about
27+
28+
Cortex has grown a lot thanks to a vibrant community of operators, contributors, and partners.
29+
This blog will be another space for us to connect, learn from each other, and push the project even further.
30+
31+
Stay tuned — the first technical post is coming soon!
32+
33+
If there's a topic you’d love to see covered, feel free to reach out or open a discussion in our [Cortex community forums](https://github.com/cortexproject/cortex/discussions).
34+
35+
Thanks for being part of the journey! 🚀
36+
37+
— The Cortex Team

website/content/en/blog/_index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: Blog
3+
menu: {main: {weight: 30}}
4+
---

0 commit comments

Comments
 (0)