This is a Next.js project bootstrapped with create-next-app.
Required local data files (do NOT commit them to GitHub!):
.env
NEXT_PUBLIC_TICKET_URL=https://hkoscon2026.eventbrite.com
NEXT_PUBLIC_ENABLE_CFP_RESULT=1
NEXT_PUBLIC_ENABLE_CFP=1
NEXT_PUBLIC_ENABLE_TIMETABLE=0
NEXT_PUBLIC_ENABLE_SPONSOR=0
src/app/meta.json
{
"conference": {
"name": "HKOSCon 2026",
"sponsors": [...],
"supporting_organizations": [...]
}
}
For accepted CFP:
src/app/events.json
{
"events": [
{
"display": "Topic 1 by Speaker 1"
},
{
"display": "Topic 2 by Speaker 2"
}
}
Timetable JSON format:
{
"days": [
{
"date": "2026-06-06",
"day": "1",
"timeslots": [
{
"startTime": "10:00",
"endTime": "10:25",
"events": [
{
"id": 1,
"display": "Opening Remarks",
"topic": true,
"internal": "/topic/opening-remarks",
"venue": {
"name": "LT-10"
},
"language": "English",
"level": "Beginner",
"description": "Open Source related news & updates",
"speakers": [
{
"name": "Sammy",
"thumbnail": "/2026/images/sammy.jpg",
"country": "Hong Kong",
"community": "Open Source",
"description": "Chairman of OS in HK",
"website": "",
"github": "",
"x": "",
"mastodon": "",
"linkedin": ""
}
]
}
]
}
]
}
]
}
Speaker Photos can be stored at public/images/ directory.
Local Test:
npm run devVolunteer list json format:
[
{
"role": "Organsing Committee",
"members": [
{
"name": "Samt",
"website": "",
"github": "",
"x": "",
"mastodon": "",
"linkedin": ""
}
]
},
{
"role": "Program Committee",
"members": [
{
"name": "Samt",
"website": "",
"github": "",
"x": "",
"mastodon": "",
"linkedin": ""
}
]
}
]
Deploy to github-page branch for GitHub Page deployment:
npm run build
cd out
touch .nojekyll
git init
git add .
git commit -m "deploy"
git push --force git@github.com:hkoscon/2026.git main:gh-pages
cd ..First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun devOpen http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying app/page.js. The page auto-updates as you edit the file.
This project uses next/font to automatically optimize and load Inter, a custom Google Font.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.