build: create frontend and backend dockerfiles docker compose and scripts

This commit is contained in:
pablohashescobar 2022-12-01 19:18:10 +05:30
parent 26ec1e8c15
commit 949b62d13f
151 changed files with 186 additions and 1 deletions

View file

@ -1,13 +0,0 @@
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
import type { NextApiRequest, NextApiResponse } from 'next'
type Data = {
name: string
}
export default function handler(
req: NextApiRequest,
res: NextApiResponse<Data>
) {
res.status(200).json({ name: 'John Doe' })
}