├── .DS_Store ├── 0502-Cover.jpg ├── README.md ├── app_router_tutorial ├── .gitignore ├── README.md ├── app │ ├── api │ │ └── auth │ │ │ └── [...nextauth] │ │ │ └── route.js │ ├── favicon.ico │ ├── globals.css │ ├── layout.js │ ├── page.js │ └── page.module.css ├── jsconfig.json ├── next.config.js ├── package-lock.json ├── package.json ├── prisma │ ├── migrations │ │ ├── 20230628134048_init │ │ │ └── migration.sql │ │ └── migration_lock.toml │ └── schema.prisma └── public │ ├── next.svg │ └── vercel.svg └── page_router_tutorial ├── .gitignore ├── README.md ├── jsconfig.json ├── next.config.js ├── package-lock.json ├── package.json ├── pages ├── _app.js ├── _document.js ├── api │ ├── auth │ │ └── [...nextauth].js │ └── hello.js └── index.js ├── prisma ├── migrations │ ├── 20230628083219_init │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── public ├── favicon.ico ├── next.svg └── vercel.svg └── styles ├── Home.module.css └── globals.css /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/.DS_Store -------------------------------------------------------------------------------- /0502-Cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/0502-Cover.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/README.md -------------------------------------------------------------------------------- /app_router_tutorial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/app_router_tutorial/.gitignore -------------------------------------------------------------------------------- /app_router_tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/app_router_tutorial/README.md -------------------------------------------------------------------------------- /app_router_tutorial/app/api/auth/[...nextauth]/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/app_router_tutorial/app/api/auth/[...nextauth]/route.js -------------------------------------------------------------------------------- /app_router_tutorial/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/app_router_tutorial/app/favicon.ico -------------------------------------------------------------------------------- /app_router_tutorial/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/app_router_tutorial/app/globals.css -------------------------------------------------------------------------------- /app_router_tutorial/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/app_router_tutorial/app/layout.js -------------------------------------------------------------------------------- /app_router_tutorial/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/app_router_tutorial/app/page.js -------------------------------------------------------------------------------- /app_router_tutorial/app/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/app_router_tutorial/app/page.module.css -------------------------------------------------------------------------------- /app_router_tutorial/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/app_router_tutorial/jsconfig.json -------------------------------------------------------------------------------- /app_router_tutorial/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/app_router_tutorial/next.config.js -------------------------------------------------------------------------------- /app_router_tutorial/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/app_router_tutorial/package-lock.json -------------------------------------------------------------------------------- /app_router_tutorial/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/app_router_tutorial/package.json -------------------------------------------------------------------------------- /app_router_tutorial/prisma/migrations/20230628134048_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/app_router_tutorial/prisma/migrations/20230628134048_init/migration.sql -------------------------------------------------------------------------------- /app_router_tutorial/prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/app_router_tutorial/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /app_router_tutorial/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/app_router_tutorial/prisma/schema.prisma -------------------------------------------------------------------------------- /app_router_tutorial/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/app_router_tutorial/public/next.svg -------------------------------------------------------------------------------- /app_router_tutorial/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/app_router_tutorial/public/vercel.svg -------------------------------------------------------------------------------- /page_router_tutorial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/.gitignore -------------------------------------------------------------------------------- /page_router_tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/README.md -------------------------------------------------------------------------------- /page_router_tutorial/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/jsconfig.json -------------------------------------------------------------------------------- /page_router_tutorial/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/next.config.js -------------------------------------------------------------------------------- /page_router_tutorial/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/package-lock.json -------------------------------------------------------------------------------- /page_router_tutorial/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/package.json -------------------------------------------------------------------------------- /page_router_tutorial/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/pages/_app.js -------------------------------------------------------------------------------- /page_router_tutorial/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/pages/_document.js -------------------------------------------------------------------------------- /page_router_tutorial/pages/api/auth/[...nextauth].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/pages/api/auth/[...nextauth].js -------------------------------------------------------------------------------- /page_router_tutorial/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/pages/api/hello.js -------------------------------------------------------------------------------- /page_router_tutorial/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/pages/index.js -------------------------------------------------------------------------------- /page_router_tutorial/prisma/migrations/20230628083219_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/prisma/migrations/20230628083219_init/migration.sql -------------------------------------------------------------------------------- /page_router_tutorial/prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /page_router_tutorial/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/prisma/schema.prisma -------------------------------------------------------------------------------- /page_router_tutorial/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/public/favicon.ico -------------------------------------------------------------------------------- /page_router_tutorial/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/public/next.svg -------------------------------------------------------------------------------- /page_router_tutorial/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/public/vercel.svg -------------------------------------------------------------------------------- /page_router_tutorial/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/styles/Home.module.css -------------------------------------------------------------------------------- /page_router_tutorial/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EBEREGIT/nextjs-nextauth-tut/HEAD/page_router_tutorial/styles/globals.css --------------------------------------------------------------------------------