├── .gitignore ├── README.md ├── docker-compose.yml ├── lib └── prisma.ts ├── next-env.d.ts ├── package.json ├── pages ├── _app.tsx ├── api │ ├── create.ts │ └── delete.ts └── index.tsx ├── prisma ├── migrations │ ├── 20210610163653_init │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public ├── favicon.ico └── vercel.svg ├── styles ├── Home.module.css └── globals.css ├── tsconfig.json ├── utils └── fetcher.tsx └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lib/prisma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/lib/prisma.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/api/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/pages/api/create.ts -------------------------------------------------------------------------------- /pages/api/delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/pages/api/delete.ts -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /prisma/migrations/20210610163653_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/prisma/migrations/20210610163653_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/styles/Home.module.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/fetcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/utils/fetcher.tsx -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daniellaera/prisma-next-postgres/HEAD/yarn.lock --------------------------------------------------------------------------------