Uploading a basic Next JS app

Hi guys :slight_smile: I asked GPT on how to upload a simple Next JS app; it told me to follow the next steps:

  1. Create a github repo
  2. Initialize it in the terminal:
git init

3.Add the files to the repository:

git add .

4.Commit changes:

git commit -m "Initial commit"

  1. Add the GitHub repository:
git remote add origin <repository-url>

6.Push your code.

git push -u origin master

  1. Set up deployment.
    Here It told me that I need to use Netlify or Vercel in order to deploy it…
    so I search in Youtube and found this tutorial:
    https://youtu.be/Vcm1anCcuU0

As a bigginer this tutorial is much easier to follow…
Anyway I hope this post was in someway useful.
Feel free to comment :slight_smile:

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.