Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit b0559ae

Browse files
authored
filter by multiple languages or none and include more info in list (#643)
1 parent 5b770b2 commit b0559ae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+233
-132
lines changed

.spellcheckerrc.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@ dictionaries:
44
- dictionary.txt
55
quiet: true
66
language: en-US
7+
frontmatter-keys:
8+
- description
9+
- title_seo
710
plugins:
811
- spell
912
- syntax-urls
1013
- syntax-mentions
1114
- repeated-words
15+
- frontmatter

contentlayer.config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ const Doc = defineDocumentType(() => ({
3939
},
4040
description: 'The tags of the post, used by guides',
4141
},
42+
languages: {
43+
type: 'list',
44+
of: {
45+
type: 'string',
46+
},
47+
description: 'The languages of the content, used by guides',
48+
},
4249
},
4350
computedFields: {
4451
slug: {

dictionary.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,10 +217,13 @@ misconfigurations
217217
DSL
218218
UI
219219
init
220+
.env
221+
.mkv
222+
.jpg
223+
.pdf
220224

221225
^.+[-:_]\w+$
222226
[a-z]+([A-Z0-9]|[A-Z0-9]\w+)
223227
([A-Z][a-z0-9]+)((\d)|([A-Z0-9][a-z0-9]+))*([A-Z])?
224228
([a-zA-Z0-9]+\.[a-zA-Z0-9]+)+
225-
\..+
226-
229+
\..+️

docs/guides/dart/serverless-rest-api-example.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ title_seo: Building your first API with Dart and Nitric
44
tags:
55
- API
66
- Key Value Store
7+
languages:
8+
- dart
79
---
810

911
# Building a REST API with Nitric

docs/guides/go/realtime-messaging.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ description: Use the Nitric framework to easily build and deploy Go WebSocket ap
33
tags:
44
- Realtime & Websockets
55
- Key Value Store
6+
languages:
7+
- go
68
---
79

810
# Building a chat app in Go with WebSockets and Nitric

docs/guides/go/serverless-rest-api-example.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ title_seo: Building your first API with Go and Nitric
44
tags:
55
- API
66
- Key Value Store
7+
languages:
8+
- go
79
---
810

911
# Building your first API with Nitric

docs/guides/nodejs/amazon-cognito.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ tags:
44
- Authentication
55
- API
66
- AWS
7+
languages:
8+
- typescript
9+
- javascript
710
---
811

912
# Securing APIs with Amazon Cognito

docs/guides/nodejs/api-with-nextjs.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ description: 'Build a serverless backend for your Next.js app using Nitric frame
33
tags:
44
- Frontend
55
- API
6+
languages:
7+
- typescript
8+
- javascript
69
---
710

811
# Next.js and Nitric example application

docs/guides/nodejs/byo-database.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
description: 'How to work with existing databases'
33
tags:
44
- Databases & CMS
5+
languages:
6+
- typescript
7+
- javascript
58
---
69

710
# BYO Database

docs/guides/nodejs/debugging.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
description: Experience real-time updates, API exploration, and schedule debugging in Nitric's local development dashboard.
33
tags:
44
- Local Development
5+
languages:
6+
- typescript
7+
- javascript
58
---
69

710
# Debugging with Nitric

0 commit comments

Comments
 (0)