Please Help!Built app need help saving files or dragging files to github

i need help i built an app and now i need to drag files to github,but i have no idea. or how to even save the files onto my pc so i can then upload to github?Basically i need help getting my built app from buider to github to vercel,please someone help me

Builder content link
e.g. Builder.io: Visual Development Platform

Builder public api key
go to Builder.io: Visual Development Platform and copy your PUBLIC api key

What are you trying to accomplish
e.g. I want to integrate builder on a landing page

Screenshots or video link
Screenshots of your issue, or even better a link to a video of what is happening or what you are trying to accomplish. We love using loom for that sort of thing

Code stack you are integrating Builder with
e.g. NextJS, react, Shopify

Reproducible code example
If you are having integration errors, please link to codesandbox or copy and paste your problematic code here. The more detail the better!

Hi chad​,

Welcome to the Builder community !!

Step 1: Export Your Builder App Code

Builder.io is a visual headless CMS, so it doesn’t store full app source code. You need to have integrated Builder with a framework, like Next.js or React. If you used a Builder starter or exported your content into a framework, make sure you already have the code locally. If not:

  • Download Starter Project (if you haven’t integrated yet):
    Go to: Builder Developer Docs, choose your framework, and follow integration instructions.
  • Save code locally:
    Once you have the integrated code (e.g. from GitHub, Builder starter, or a code export), save it on your computer.

Step 2: Push to GitHub

If you haven’t used GitHub before:

Create a GitHub account: github.com

Create a new repository on GitHub.

Now in your local project folder:

git init
git remote add origin https://github.com/your-username/your-repo.git
git add .
git commit -m "Initial commit from Builder app"
git push -u origin master  # or main, depending on GitHub default

Step 3: Deploy to Vercel

It is out of our context. You need to check other open sources.

For more information: Connect GitHub to Projects

Thanks,