Zip & Download > Import to another workspace?

Hi,

We have built a project and we need to move it to someone else now to continue the build in their own business organisation / google login.

I’ve tried the simple one of making them an owner to then remove myself, but when they click accept on the invite it says that I am not authorised to invite them - it needs to be someone in “my” organisations with the right permissions (I am the only person in my organisation - and the only one with full permissions).

Since that option has failed.

I was wondering - is it possible for me to zip up the whole project from Studio, download it - then they can upload it into the (pictured) function on their end, to essentially start the project again from where i left it, in their own organisation account and cloud billing setup? Also, would they still get access to the AI functionality to help them along with the build just like the functions I had essentially.

Any advice would be great - thank you.

I’d like to learn how to download the entire project too.
I hope someone responds soon

Publish project to github using source control. And download it from github.

Save as backup.sh
chmod +x backup.sh
./backup.sh

Right-click the .ZIP file in your file browser in code view, select Download.

Alternatively, you can select all folders in the folder browser and use the zip and download button. But this relies on VS Code to handle that for you, which can be slow and unreliable. I like this method because it puts you more in control and you can verify the .ZIP contents yourself.

#!/bin/bash

# Name of the backup file with timestamp
BACKUP_NAME="backup-$(date +%Y-%m-%d_%H-%M-%S).zip"

# Create the ZIP archive, excluding common junk but keeping .git
zip -r "$BACKUP_NAME" . \
  -x "node_modules/*" \
     "*.DS_Store" \
     "*.log" \
     ".next/*" \
     "backup-*.zip"

echo "Backup WITH Git history created: $BACKUP_NAME"