create-arktos
Version:
🚀 A modern Node.js backend boilerplate with TypeScript, Express, JWT authentication, Prisma ORM, PostgreSQL, and Resend email service. Includes complete authentication flow, security middleware, and database management.
34 lines • 517 B
JSON
{
"version": 2,
"name": "arktos-backend",
"builds": [
{
"src": "server.js",
"use": "@vercel/node",
"config": {
"includeFiles": [
"prisma/schema.prisma",
"views/emails/**"
]
}
}
],
"routes": [
{
"src": "/(.*)",
"dest": "/server.js"
}
],
"env": {
"NODE_ENV": "production"
},
"functions": {
"server.js": {
"maxDuration": 30
}
},
"regions": ["iad1"],
"github": {
"autoAlias": false
}
}