- 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
24 lines
925 B
TypeScript
24 lines
925 B
TypeScript
export const SITE = {
|
|
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,
|
|
scheduledPostMargin: 15 * 60 * 1000, // 15 minutes
|
|
showArchives: true,
|
|
showBackButton: true, // show back button in post detail
|
|
editPost: {
|
|
enabled: true,
|
|
text: "Edit page",
|
|
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: "Europe/Paris", // Default global timezone (IANA format) https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
|
|
} as const;
|