Add GitHub Actions deployment workflows and cloud platform configs

This commit is contained in:
2025-08-21 11:26:03 +09:00
parent a8a31b696a
commit 67f944a318
4 changed files with 89 additions and 0 deletions

23
vercel.json Normal file
View File

@@ -0,0 +1,23 @@
{
"version": 2,
"builds": [
{
"src": "server.js",
"use": "@vercel/node"
}
],
"routes": [
{
"src": "/(.*)",
"dest": "/server.js"
}
],
"env": {
"NODE_ENV": "production"
},
"functions": {
"server.js": {
"maxDuration": 30
}
}
}