feat: initialize HEC IA Wiki with Docker setup, build process, and content structure

- Add .dockerignore t
- Create Gitea Action to build and publish image
- Update Dockerfile to include build steps and health check
- Revise README.md
- Modify config.ts for site-specific settings
- Enhance content.config.ts to define collections for events, workshops, news, and technical articles
This commit is contained in:
vorpax
2026-01-29 11:44:34 +01:00
parent c29b05bff3
commit 6971fc231d
6 changed files with 425 additions and 89 deletions

View File

@@ -1,10 +1,10 @@
export const SITE = {
website: "https://astro-paper.pages.dev/", // replace this with your deployed domain
author: "Sat Naing",
profile: "https://satnaing.dev/",
desc: "A minimal, responsive and SEO-friendly Astro blog theme.",
title: "AstroPaper",
ogImage: "astropaper-og.jpg",
website: "https://wiki.hec-ia.com/", // replace this with your deployed domain
author: "HEC IA",
profile: "https://wiki.hec-ia.com/about",
desc: "HEC IA student association wiki - Events, workshops, news, and technical deep dives on artificial intelligence.",
title: "HEC IA Wiki",
ogImage: "hec-ia-og.jpg",
lightAndDarkMode: true,
postPerIndex: 4,
postPerPage: 4,
@@ -14,10 +14,10 @@ export const SITE = {
editPost: {
enabled: true,
text: "Edit page",
url: "https://github.com/satnaing/astro-paper/edit/main/",
url: "https://github.com/hec-ia/wiki/edit/main/",
},
dynamicOgImage: true,
dir: "ltr", // "rtl" | "auto"
lang: "en", // html lang code. Set this empty and default will be "en"
timezone: "Asia/Bangkok", // Default global timezone (IANA format) https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
timezone: "Europe/Paris", // Default global timezone (IANA format) https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
} as const;