From 974e4cd4fe7aa6c5e8ad3b528d726e2d997cab92 Mon Sep 17 00:00:00 2001 From: WayneGoosen <13494899+WayneGoosen@users.noreply.github.com> Date: Thu, 12 Sep 2024 22:28:51 +0200 Subject: [PATCH] feat: update description and validation max values --- .../streamlit-deployment-guide-part-1-containerization.mdx | 2 +- src/content/config.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/content/blog/streamlit-deployment-guide-part-1-containerization.mdx b/src/content/blog/streamlit-deployment-guide-part-1-containerization.mdx index 0e8d645..9c5d1b5 100644 --- a/src/content/blog/streamlit-deployment-guide-part-1-containerization.mdx +++ b/src/content/blog/streamlit-deployment-guide-part-1-containerization.mdx @@ -1,7 +1,7 @@ --- heroImage: /src/assets/images/streamlitdocker.png category: Containers -description: 'A step-by-step guide on containerizing a Streamlit application using Docker, detailing the creation of a Dockerfile and the commands needed to build and run the container.' +description: 'A guide to containerizing a Streamlit app with Docker, covering how to create a Dockerfile, and the commands to build and run the container efficiently.' pubDate: 'June 16 2024' tags: - docker diff --git a/src/content/config.ts b/src/content/config.ts index 035dba9..5dcb3a0 100644 --- a/src/content/config.ts +++ b/src/content/config.ts @@ -5,8 +5,8 @@ const blog = defineCollection({ // Type-check frontmatter using a schema schema: ({ image }) => z.object({ - title: z.string().max(80), - description: z.string(), + title: z.string().max(60), + description: z.string().max(158), // Transform string to Date object pubDate: z .string()