Files
chorus-ping-blog/package.json
anthonyrawlins 796924499d Fix scheduled publishing date issue and deploy working blog v1.1.1
- Root cause: publishDate was set for future dates (Aug 28/29) when current time is Aug 27
- Fixed by updating publishDate to Aug 27 09:00 UTC (in the past)
- Scheduled post now appears correctly on blog homepage and RSS feed
- Blog v1.1.1 successfully deployed with working scheduled publishing

Issue resolved:
 "Why On-prem GPUs Still Matter for AI" now live at blog.chorus.services
 Post appears on homepage in Recent Posts section
 Post included in RSS feed with full content
 Direct post URL accessible: /posts/2025-08-29-on-prem-gpus
 Timezone handling working correctly with UTC publishDate

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-28 09:35:35 +10:00

52 lines
1.4 KiB
JSON

{
"name": "chorus-ping",
"version": "1.1.1",
"description": "CHORUS PING! - Static blog posts using Next.js",
"private": true,
"scripts": {
"dev": "next dev -p 3024",
"build": "next build",
"start": "next start -p 3025",
"lint": "next lint",
"type-check": "tsc --noEmit",
"docker:build": "docker build -t chorus-blog .",
"docker:run": "docker run -p 3025:3025 chorus-blog",
"docker:compose": "docker-compose up -d"
},
"dependencies": {
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/three": "^0.179.0",
"autoprefixer": "^10.4.0",
"clsx": "^2.1.0",
"gray-matter": "^4.0.3",
"next": "^14.2.18",
"next-mdx-remote": "^5.0.0",
"postcss": "^8.4.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rehype-autolink-headings": "^7.0.0",
"rehype-highlight": "^7.0.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.0",
"tailwindcss": "^3.4.0",
"three": "^0.179.1",
"typescript": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.0",
"eslint": "^8.0.0",
"eslint-config-next": "^15.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "http://ironwood:3000/tony/chorus.services.git"
},
"author": "Anthony Lewis Rawlins <cto@deepblack.cloud>",
"license": "PROPRIETARY"
}