This is a starter template for Next.js.
This is a unique starter template. It trys to be as much seperated from the framework as possible, but still taking advantage of it.
It includes:
- Tailwind CSS for styling
- TypeScript for type checking
- ESLint for linting
- NextAuth.js for authentication
- Prisma for database access
- Postgresql for the database
pnpm iCreate a .env.local file similar to .env.example with the appropriate values.
You can use Vercel postgresql for development. You can get the connection string from the Vercel dashboard.
Simply create a new database on the dashboard and run the following command to get the connection string:
vercel env pull .env.localnpm run dev
# or
yarn devOpen http://localhost:3000 with your browser to see the result.