This is a Next.js project bootstrapped with create-next-app.
npm run dev- Requires a local .env feature config 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
- Requires 6 JSON files for data files
src/app/meta.json for conference name, sponsor,
{
"conference": {
"name": "HKOSCon 2026",
"sponsors": {
"Gold": {
"name": "Gold Sponsor",
"sponsors": [
{
"title": "Gold Company Inc.",
"logo": "/2026/images/sponsors/gold-company.jpg",
"description": "<p>.....</p>",
"links": [
{ "title": "Website", "url": "" }
]
}
]
},
"Silver": {
"name": "Silver Sponsor",
"sponsors": [
{
"title": "Silver Maker",
"logo": "/2026/images/sponsors/silver-maker.jpg",
"description": "<p>.....</p>",
"links": [
{ "title": "Website", "url": "" }
]
}
]
}
},
"supporting_organizations": [
{ "title": "A User Group", "logo": "/2026/images/supportorgs/a-user-group.png" },
{ "title": "B Organisation", "logo": "/2026/images/supportorgs/b-org.png" },
]
}
}
For accepted CFP:
src/app/events.json
{
"events": [
{
"display": "Topic 1 by Speaker 1"
},
{
"display": "Topic 2 by Speaker 2"
}
}
Patron:
src/app/patrons.json
[
{"name": "Patron Alpha"},
{"name": "Patron Beta"}
]
Timetable JSON format:
Notes: Speaker Photos can be stored at public/images/ directory.
src/app/timetable.json
{
"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": ""
}
]
}
]
}
]
}
]
}
Session list:
src/app/session
[
{
"id": 35,
"display": "Session topic title",
"topic": true,
"internal": "/topic/session-topic-title",
"venue": {
"name": "LT0"
},
"language": "Cantonese",
"level": "Beginner",
"targetAudience": "General User",
"description": "This is session description",
"speaker": [
{
"name": "Speaker ABC",
"thumbnail": "/images/speaker-abc.jpg",
"country": "Hong Kong",
"description": "Speaker Bio Here",
"community": "",
"website": "",
"github": "",
"x": "",
"linkedin": ""
}
]
}
]
Volunteer list json format:
src/app/volunteers.json
[
{
"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.