- Create Dockerfile for multi-stage build - Set up GitHub Actions workflow for CI/CD - Implement meal and timetable fetching logic - Add README and configuration files - Include cron job for scheduled execution - Establish .gitignore for build artifacts and environment files
16 lines
301 B
JSON
16 lines
301 B
JSON
{
|
|
"name": "app",
|
|
"module": "index.ts",
|
|
"type": "module",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
},
|
|
"dependencies": {
|
|
"@azure-rest/ai-inference": "^1.0.0-beta.6",
|
|
"@imnyang/comcigan.ts": "^0.3.0"
|
|
}
|
|
}
|