An open API service indexing awesome lists of open source software.

https://github.com/tpiros/next-workshop


https://github.com/tpiros/next-workshop

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Notes

Please make sure to add an `env.local` file as well (at the root of the project), with the following environment variables. When deploying to Vercel you'll have to add the same environment variables before you first build your project (replace all with your values):

```
NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME="your-cloudinary-account-name"
AUTH0_SECRET=''
AUTH0_BASE_URL='http://localhost:3000'
AUTH0_ISSUER_BASE_URL='https://********.auth0.com'
AUTH0_CLIENT_ID=''
AUTH0_CLIENT_SECRET=''
```

You can register for Cloudinary here: https://cloudinary.com/users/register_free
You can register for Auth0 here: https://auth0.com/signup

To learn more about the Auth0 steps with Next.js, please read the following: https://auth0.com/docs/quickstart/webapp/nextjs/01-login

# Defaults
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

## Getting Started

First, run the development server:

```bash
npm run dev
# or
yarn dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.

[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`.

The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.

## Learn More

To learn more about Next.js, take a look at the following resources:

- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.

You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!

## Deploy on Vercel

The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.

Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.