├── .gitignore ├── backend ├── .dockerignore ├── .gitignore ├── backend.dockerfile ├── index.js ├── package-lock.json ├── package.json └── prisma │ └── schema.prisma ├── compose.yaml └── frontend ├── .dockerignore ├── .eslintrc.json ├── .gitignore ├── README.md ├── frontend.dockerfile ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── next.svg └── vercel.svg ├── src ├── components │ └── CardComponent.tsx ├── pages │ ├── _app.tsx │ ├── _document.tsx │ ├── api │ │ └── hello.ts │ └── index.tsx └── styles │ └── globals.css ├── tailwind.config.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | *node_modules -------------------------------------------------------------------------------- /backend/.dockerignore: -------------------------------------------------------------------------------- 1 | **/node_modules -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/backend/.gitignore -------------------------------------------------------------------------------- /backend/backend.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/backend/backend.dockerfile -------------------------------------------------------------------------------- /backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/backend/index.js -------------------------------------------------------------------------------- /backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/backend/package-lock.json -------------------------------------------------------------------------------- /backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/backend/package.json -------------------------------------------------------------------------------- /backend/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/backend/prisma/schema.prisma -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/compose.yaml -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- 1 | **/node_modules -------------------------------------------------------------------------------- /frontend/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/frontend.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/frontend.dockerfile -------------------------------------------------------------------------------- /frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/next.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/public/next.svg -------------------------------------------------------------------------------- /frontend/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/public/vercel.svg -------------------------------------------------------------------------------- /frontend/src/components/CardComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/src/components/CardComponent.tsx -------------------------------------------------------------------------------- /frontend/src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/src/pages/_app.tsx -------------------------------------------------------------------------------- /frontend/src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/src/pages/_document.tsx -------------------------------------------------------------------------------- /frontend/src/pages/api/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/src/pages/api/hello.ts -------------------------------------------------------------------------------- /frontend/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/src/pages/index.tsx -------------------------------------------------------------------------------- /frontend/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/src/styles/globals.css -------------------------------------------------------------------------------- /frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrancescoXX/fullstack-next-node-postgres/HEAD/frontend/tsconfig.json --------------------------------------------------------------------------------